44 lines
1.2 KiB
YAML
44 lines
1.2 KiB
YAML
# this file is managed by ansible. Do not edit it by hand
|
|
|
|
#
|
|
# NOTE: the ansible-role-chill will also configure a rule for logrotate, so,
|
|
# we do not need to configure log rotation here
|
|
#
|
|
|
|
parameters:
|
|
log_prefix: '{{ chill.chill_environment }}'
|
|
monolog:
|
|
# make a "notifier" channel available
|
|
channels: ['notifier']
|
|
handlers:
|
|
notifier_log:
|
|
type: stream
|
|
path: "%kernel.logs_dir%/notifier-%log_prefix%.log"
|
|
level: info
|
|
channels: [ 'notifier' ]
|
|
errors_log:
|
|
type: stream
|
|
path: "%kernel.logs_dir%/error-%log_prefix%.log"
|
|
level: error
|
|
privacy_log:
|
|
type: stream
|
|
path: "%kernel.logs_dir%/privacy-%log_prefix%.log"
|
|
level: info
|
|
channels: [ 'chill' ]
|
|
default_log:
|
|
type: stream
|
|
path: "%kernel.logs_dir%/default-%log_prefix%.log"
|
|
level: info
|
|
channels: [ '!event', '!doctrine', '!console', '!chill' ]
|
|
deprecation_log:
|
|
type: stream
|
|
path: "%kernel.logs_dir%/deprecation-%log_prefix%.log"
|
|
level: info
|
|
channels: [ 'deprecation' ]
|
|
console:
|
|
type: console
|
|
process_psr_3_messages: false
|
|
level: error
|
|
channels: [ '!event', '!doctrine', '!console', '!deprecation']
|
|
bubble: true
|