Julien Fastré
c572d68eb4
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.
20 lines
613 B
YAML
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
|