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 (#199)
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshuaLicense authored Jul 10, 2024
1 parent 3cf7cca commit a4b9db4
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 @@ -89,7 +89,15 @@
'writers' => [
'full' => [
'options' => [
'stream' => (\Aws\Credentials\CredentialProvider::shouldUseEcs() ? 'php://stdout' : '/var/log/dvsa/olcs-iuweb/iuweb.log')
'stream' => (\Aws\Credentials\CredentialProvider::shouldUseEcs() ? 'php://stdout' : '/var/log/dvsa/olcs-iuweb/iuweb.log'),
'filters' => [
'priority' => [
'name' => 'priority',
'options' => [
'priority' => \Laminas\Log\Logger::WARN
]
],
]
],
]
]
Expand All @@ -98,7 +106,15 @@
'writers' => [
'full' => [
'options' => [
'stream' => (\Aws\Credentials\CredentialProvider::shouldUseEcs() ? 'php://stderr' : '/var/log/dvsa/olcs-iuweb/iuweb.log')
'stream' => (\Aws\Credentials\CredentialProvider::shouldUseEcs() ? 'php://stderr' : '/var/log/dvsa/olcs-iuweb/iuweb.log'),
'filters' => [
'priority' => [
'name' => 'priority',
'options' => [
'priority' => \Laminas\Log\Logger::WARN
]
],
]
],
]
]
Expand Down

0 comments on commit a4b9db4

Please sign in to comment.