Merge branch 'dillon/34.8-vapor-development' into vapor/development

This commit is contained in:
Dillon Ngo
2024-11-05 02:44:40 +08:00
+2 -2
View File
@@ -175,7 +175,7 @@ return [
'secret' => env('AWS_CW_SECRET')
]
],
'retention' => 31,
'retention' => env('APP_ENV') === 'production' ? 90 : 6,
'level' => 'debug',
'groupNamePrefix' => env('CLOUDWATCH_LOGGROUP_PREFIX'),
],
@@ -193,7 +193,7 @@ return [
'secret' => env('AWS_CW_SECRET')
]
],
'retention' => 31,
'retention' => env('APP_ENV') === 'production' ? 90 : 6,
'level' => 'debug',
'groupNamePrefix' => env('CLOUDWATCH_LOGGROUP_PREFIX'),
],