mirror of
https://github.com/SuiteCRM/SuiteCRM-Core.git
synced 2025-09-04 10:14:13 +08:00
Add auth logging channel
- Add channel for authentication logs to be easier to debug authentication problems
This commit is contained in:
parent
ebf73018c9
commit
0179d916a9
1 changed files with 8 additions and 3 deletions
|
@ -1,13 +1,18 @@
|
|||
monolog:
|
||||
channels: ['upgrade', 'install']
|
||||
channels: [ 'upgrade', 'install', 'auth' ]
|
||||
handlers:
|
||||
upgrade:
|
||||
type: stream
|
||||
path: "%kernel.project_dir%/logs/upgrade.log"
|
||||
level: debug
|
||||
channels: ["upgrade"]
|
||||
channels: [ "upgrade" ]
|
||||
install:
|
||||
type: stream
|
||||
path: "%kernel.project_dir%/logs/install.log"
|
||||
level: debug
|
||||
channels: ["install"]
|
||||
channels: [ "install" ]
|
||||
auth:
|
||||
type: stream
|
||||
path: "%kernel.project_dir%/logs/auth.log"
|
||||
level: debug
|
||||
channels: [ "auth" ]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue