From 0200c9e0cd82cb699f579476eb499834943f7d79 Mon Sep 17 00:00:00 2001 From: Shlee Date: Sat, 5 Sep 2026 20:20:03 +0930 Subject: [PATCH] Change default log stack from 'single' to 'daily' --- config/logging.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/logging.php b/config/logging.php index f6e48685b..ad73b7f82 100644 --- a/config/logging.php +++ b/config/logging.php @@ -54,7 +54,7 @@ return [ 'stack' => [ 'driver' => 'stack', - 'channels' => explode(',', (string) env('LOG_STACK', 'single')), + 'channels' => explode(',', (string) env('LOG_STACK', 'daily')), 'ignore_exceptions' => false, ],