correct writting level
This commit is contained in:
parent
c47d7877bb
commit
530c7df5e2
|
|
@ -9,6 +9,7 @@ monolog:
|
||||||
- security
|
- security
|
||||||
- php
|
- php
|
||||||
- error
|
- error
|
||||||
|
- aws_management
|
||||||
- deprecation # Deprecations are logged in the dedicated "deprecation" channel when it exists
|
- deprecation # Deprecations are logged in the dedicated "deprecation" channel when it exists
|
||||||
|
|
||||||
when@dev:
|
when@dev:
|
||||||
|
|
@ -138,12 +139,18 @@ when@prod:
|
||||||
channels: [ php ]
|
channels: [ php ]
|
||||||
# User Management
|
# User Management
|
||||||
user_management:
|
user_management:
|
||||||
type: stream
|
type: rotating_file
|
||||||
path: "%kernel.logs_dir%/user_management.log"
|
path: "%kernel.logs_dir%/user_management.log"
|
||||||
level: info
|
level: info
|
||||||
channels: [user_management]
|
channels: [user_management]
|
||||||
max_files: 30
|
max_files: 30
|
||||||
|
#AWS
|
||||||
|
aws_management:
|
||||||
|
type: rotating_file
|
||||||
|
path: "%kernel.logs_dir%/aws_management.log"
|
||||||
|
level: info
|
||||||
|
channels: [aws_management]
|
||||||
|
max_files: 30
|
||||||
# Authentication
|
# Authentication
|
||||||
authentication:
|
authentication:
|
||||||
type: rotating_file
|
type: rotating_file
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue