예제 #1
0
파일: Logger.php 프로젝트: grongor/phpd
 /**
  * @param string $filename
  * @param int    $verbosity
  */
 public function __construct($filename, $verbosity = OutputInterface::VERBOSITY_NORMAL)
 {
     $this->filename = $filename;
     $this->verbosity = $verbosity;
     parent::__construct($this->createStream($filename, $verbosity));
 }