From b4bc441a5bb51148e44e4bfa489b83243a0470e9 Mon Sep 17 00:00:00 2001 From: Dillon Ngo Date: Tue, 5 Nov 2024 04:09:08 +0800 Subject: [PATCH] Laravel Vapor - Update custom logs retention period (sync code from Exchange) --- config/logging.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/logging.php b/config/logging.php index 8be87383..65217053 100644 --- a/config/logging.php +++ b/config/logging.php @@ -73,7 +73,7 @@ return [ 'secret' => env('AWS_CW_SECRET') ] ], - 'retention' => env('APP_ENV') === 'production' ? 90 : 3, + 'retention' => env('APP_ENV') === 'production' ? 90 : 14, 'level' => 'debug', 'groupNamePrefix' => env('CLOUDWATCH_LOGGROUP_PREFIX'), ],