Adding Logger Tests

This commit is contained in:
Philipp Holzer 2019-03-04 23:39:14 +01:00 committed by Hypolite Petovan
parent 7bebb03f95
commit aee348fa02
9 changed files with 447 additions and 82 deletions

View file

@ -115,7 +115,6 @@ class StreamLogger extends AbstractLogger
$this->checkStream();
$this->stream = fopen($this->url, 'a');
$formattedLog = $this->formatLog($level, $message, $context);
fwrite($this->stream, $formattedLog);
}