Merge branch 'dillon/34.4-jenkins-vapor' into vapor/development

This commit is contained in:
Dillon Ngo
2024-05-19 23:26:10 +08:00
2 changed files with 1 additions and 2 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ class CloudWatchLoggerFactory
$client = new CloudWatchLogsClient($sdkParams);
// Log group name, will be created if none
$groupName = $config["groupNamePrefix"] . '-' . $config["groupNameSuffix"];
$groupName = $config["groupNamePrefix"] . '-' . env('VAPOR_ENV');
// Log stream name, will be created if none
// $streamName = config('app.hostname');
-1
View File
@@ -76,7 +76,6 @@ return [
'retention' => 3, //cief todo: to be updated
'level' => 'debug',
'groupNamePrefix' => env('CLOUDWATCH_LOGGROUP_PREFIX'),
'groupNameSuffix' => env('CLOUDWATCH_LOGGROUP_SUFFIX'),
],
'slack' => [