예제 #1
0
파일: StdOut.php 프로젝트: Room-11/Jeeves
 public function __construct(int $level, bool $showTimestamps = true)
 {
     parent::__construct($level);
     $this->format = $showTimestamps ? '[%2$s] %1$s' : '%s';
 }
예제 #2
0
파일: File.php 프로젝트: Room-11/Jeeves
 public function __construct(int $logLevel, string $filename)
 {
     parent::__construct($logLevel);
     $this->handle = openFile($filename, 'a');
     $this->writeQueue = new Queue();
 }