예제 #1
0
파일: profiler.php 프로젝트: 4bs4/marifa
 /**
  * Logs a variable to the console
  *
  * @param mixed $data The data to log to the console
  *
  * @return void
  */
 public function log($data)
 {
     if (!$this->is_enabled()) {
         return;
     }
     $this->_console->log($data);
 }