From 530c7df5e20200aeb5c0d505d371e29459ff363d Mon Sep 17 00:00:00 2001 From: Charles Date: Tue, 9 Dec 2025 10:35:40 +0100 Subject: [PATCH] correct writting level --- config/packages/monolog.yaml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/config/packages/monolog.yaml b/config/packages/monolog.yaml index 34dd8f7..79ac6b4 100644 --- a/config/packages/monolog.yaml +++ b/config/packages/monolog.yaml @@ -9,6 +9,7 @@ monolog: - security - php - error + - aws_management - deprecation # Deprecations are logged in the dedicated "deprecation" channel when it exists when@dev: @@ -138,12 +139,18 @@ when@prod: channels: [ php ] # User Management user_management: - type: stream + type: rotating_file path: "%kernel.logs_dir%/user_management.log" level: info channels: [user_management] max_files: 30 - + #AWS + aws_management: + type: rotating_file + path: "%kernel.logs_dir%/aws_management.log" + level: info + channels: [aws_management] + max_files: 30 # Authentication authentication: type: rotating_file