Fixed #9198 - added stdout as a log driver

This commit is contained in:
snipe 2021-02-24 09:10:03 -08:00
parent c3166d491a
commit db3f80bb9b

View file

@ -67,6 +67,12 @@ return [
],
],
'stdout' => [
'driver' => 'monolog',
'handler' => StreamHandler::class,
'with' => [ 'stream' => 'php://stdout', ],
],
'syslog' => [
'driver' => 'syslog',
'level' => env('APP_LOG_LEVEL', 'error'),