diff --git a/config/logging.php b/config/logging.php index 902efafb..bf075861 100644 --- a/config/logging.php +++ b/config/logging.php @@ -1,5 +1,7 @@ 'critical', ], + 'stderr' => [ + 'driver' => 'monolog', + 'handler' => StreamHandler::class, + 'with' => [ + 'stream' => 'php://stderr', + ], + ], + 'syslog' => [ 'driver' => 'syslog', 'level' => 'debug',