Files
ansible-role-chill/templates/config/prod/monolog.yaml
Julien Fastré 4cef67a91d Add "managed by Ansible" notice to all template files
Included comments at the top of all template files indicating that they are managed by Ansible and should not be edited manually. This ensures clarity and avoids unintended manual modifications.
2025-09-11 11:01:50 +02:00

21 lines
671 B
YAML

# this file is managed by ansible. Do not edit it by hand
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