From db3f80bb9b20d944e4fe15b57b9da2955326c340 Mon Sep 17 00:00:00 2001 From: snipe Date: Wed, 24 Feb 2021 09:10:03 -0800 Subject: [PATCH] Fixed #9198 - added stdout as a log driver --- config/logging.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/config/logging.php b/config/logging.php index 86641787c0..b57af6ade6 100644 --- a/config/logging.php +++ b/config/logging.php @@ -67,6 +67,12 @@ return [ ], ], + 'stdout' => [ + 'driver' => 'monolog', + 'handler' => StreamHandler::class, + 'with' => [ 'stream' => 'php://stdout', ], + ], + 'syslog' => [ 'driver' => 'syslog', 'level' => env('APP_LOG_LEVEL', 'error'),