From ca9edc730e7d072f69d3285e293fe8d783b6f2d0 Mon Sep 17 00:00:00 2001 From: Ahmed Alaa Date: Mon, 10 Mar 2025 15:08:42 +0200 Subject: [PATCH 1/2] Structural improvement for clarity --- config/logging.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/logging.php b/config/logging.php index 8d94292b29f..fb4fbe7435b 100644 --- a/config/logging.php +++ b/config/logging.php @@ -98,10 +98,10 @@ 'driver' => 'monolog', 'level' => env('LOG_LEVEL', 'debug'), 'handler' => StreamHandler::class, - 'formatter' => env('LOG_STDERR_FORMATTER'), 'with' => [ 'stream' => 'php://stderr', ], + 'formatter' => env('LOG_STDERR_FORMATTER'), 'processors' => [PsrLogMessageProcessor::class], ], From fd7f1deecb6cdc89ed79c65abf412ea3a516d7bd Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Mon, 10 Mar 2025 12:07:43 -0500 Subject: [PATCH 2/2] Update logging.php --- config/logging.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/logging.php b/config/logging.php index fb4fbe7435b..1345f6f66c5 100644 --- a/config/logging.php +++ b/config/logging.php @@ -98,7 +98,7 @@ 'driver' => 'monolog', 'level' => env('LOG_LEVEL', 'debug'), 'handler' => StreamHandler::class, - 'with' => [ + 'handler_with' => [ 'stream' => 'php://stderr', ], 'formatter' => env('LOG_STDERR_FORMATTER'),