From 3549033ac7df3757d068b1eec339394514afbb52 Mon Sep 17 00:00:00 2001 From: Ahmed Alaa <92916738+AhmedAlaa4611@users.noreply.github.com> Date: Mon, 10 Mar 2025 19:07:54 +0200 Subject: [PATCH] [12.x] Refactor: Structural improvement for clarity (#6574) * Structural improvement for clarity * Update logging.php --------- Co-authored-by: Taylor Otwell --- config/logging.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/logging.php b/config/logging.php index 8d94292b..1345f6f6 100644 --- a/config/logging.php +++ b/config/logging.php @@ -98,10 +98,10 @@ return [ 'driver' => 'monolog', 'level' => env('LOG_LEVEL', 'debug'), 'handler' => StreamHandler::class, - 'formatter' => env('LOG_STDERR_FORMATTER'), - 'with' => [ + 'handler_with' => [ 'stream' => 'php://stderr', ], + 'formatter' => env('LOG_STDERR_FORMATTER'), 'processors' => [PsrLogMessageProcessor::class], ],