Example #1
0
 /**
  * Register a file log handler.
  *
  * @param string $path
  * @param string $level
  *
  * @return void
  */
 public function useFiles($path, $level = 'debug')
 {
     if ($this->logger instanceof Log) {
         $this->logger->useFiles($path, $level);
     }
 }