Skip to content
This repository has been archived by the owner on Aug 16, 2024. It is now read-only.

Commit

Permalink
feat: change log level to WARN (#171)
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshuaLicense authored Jul 10, 2024
1 parent b8f74e2 commit 1e19d5b
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions config/autoload/config.global.php
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,15 @@
'writers' => [
'full' => [
'options' => [
'stream' => (\Aws\Credentials\CredentialProvider::shouldUseEcs() ? 'php://stdout' : '/var/log/dvsa/olcs-ssweb/ssweb.log')
'stream' => (\Aws\Credentials\CredentialProvider::shouldUseEcs() ? 'php://stdout' : '/var/log/dvsa/olcs-ssweb/ssweb.log'),
'filters' => [
'priority' => [
'name' => 'priority',
'options' => [
'priority' => \Laminas\Log\Logger::WARN
]
],
]
],
]
]
Expand All @@ -123,7 +131,15 @@
'writers' => [
'full' => [
'options' => [
'stream' => (\Aws\Credentials\CredentialProvider::shouldUseEcs() ? 'php://stderr' : '/var/log/dvsa/olcs-ssweb/ssweb.log')
'stream' => (\Aws\Credentials\CredentialProvider::shouldUseEcs() ? 'php://stderr' : '/var/log/dvsa/olcs-ssweb/ssweb.log'),
'filters' => [
'priority' => [
'name' => 'priority',
'options' => [
'priority' => \Laminas\Log\Logger::WARN
]
],
]
],
]
]
Expand Down

0 comments on commit 1e19d5b

Please sign in to comment.