23 lines
610 B
YAML
23 lines
610 B
YAML
monolog:
|
|
channels: ['agent']
|
|
|
|
handlers:
|
|
|
|
# -------------------------------------------------
|
|
# 1) Agent Channel (nur Agent Logs)
|
|
# -------------------------------------------------
|
|
agent:
|
|
type: rotating_file
|
|
path: '%kernel.logs_dir%/agent.log'
|
|
level: debug
|
|
max_files: 30
|
|
channels: ['agent']
|
|
|
|
# -------------------------------------------------
|
|
# 2) System Log (wirklich alles)
|
|
# -------------------------------------------------
|
|
system:
|
|
type: rotating_file
|
|
path: '%kernel.logs_dir%/system.log'
|
|
level: debug
|
|
max_files: 30 |