public function __construct(int $level, bool $showTimestamps = true) { parent::__construct($level); $this->format = $showTimestamps ? '[%2$s] %1$s' : '%s'; }
public function __construct(int $logLevel, string $filename) { parent::__construct($logLevel); $this->handle = openFile($filename, 'a'); $this->writeQueue = new Queue(); }