ansible-role-chill/templates/config/prod/monolog.yaml
Julien Fastré c572d68eb4
Fix logging paths and permissions for chill role configuration
Corrected log file paths in Monolog configuration and Compose file for consistency. Updated directory permissions in tasks to allow group write access. These changes improve log file organization and facilitate better collaboration.
2025-01-13 10:52:15 +01:00

20 lines
613 B
YAML

parameters:
log_prefix: {{ item.chill_environment }}
monolog:
handlers:
default_log:
type: stream
path: "%kernel.logs_dir%/privacy-%log_prefix%.log"
level: info
channels: ['chill']
chill_log:
type: stream
path: "%kernel.logs_dir%/default-%log_prefix%.log"
level: info
channels: ['!event', '!doctrine', '!console', '!chill']
console:
type: console
process_psr_3_messages: false
channels: ['!event', '!doctrine', '!console']
bubble: false