Exemplo n.º 1
0
 /**
  * Records the time it takes for an action to occur
  *
  * @param string $name The name of the benchmark
  *
  * @return void
  *
  */
 public function log_benchmark($name)
 {
     if (!$this->is_enabled()) {
         return;
     }
     $this->_console->log_benchmark($name);
 }