silence E_NOTICE triggered since PHP 7.4

This commit is contained in:
Christian Flothmann 2020-04-12 11:28:02 +02:00
parent 8920f183fb
commit c4e2c447ba
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ class Logger extends AbstractLogger
}
$formatter = $this->formatter;
fwrite($this->handle, $formatter($level, $message, $context));
@fwrite($this->handle, $formatter($level, $message, $context));
}
/**