From b0da189fa29249044e8e912726641f41f4631f41 Mon Sep 17 00:00:00 2001 From: Charles Date: Mon, 1 Dec 2025 14:02:45 +0100 Subject: [PATCH] modify type : stream -> rotating_file --- config/packages/monolog.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/config/packages/monolog.yaml b/config/packages/monolog.yaml index 42ca320..c69c8e7 100644 --- a/config/packages/monolog.yaml +++ b/config/packages/monolog.yaml @@ -77,7 +77,7 @@ when@prod: # Authentication authentication: - type: stream + type: rotating_file path: "%kernel.logs_dir%/authentication.log" level: info channels: [authentication] @@ -86,7 +86,7 @@ when@prod: # Organization Management organization_management: - type: stream + type: rotating_file path: "%kernel.logs_dir%/organization_management.log" level: info channels: [organization_management] @@ -95,7 +95,7 @@ when@prod: # Access Control access_control: - type: stream + type: rotating_file path: "%kernel.logs_dir%/access_control.log" level: info channels: [access_control] @@ -104,7 +104,7 @@ when@prod: # Email Notifications email_notifications: - type: stream + type: rotating_file path: "%kernel.logs_dir%/email_notifications.log" level: info channels: [email_notifications] @@ -113,7 +113,7 @@ when@prod: # Admin Actions admin_actions: - type: stream + type: rotating_file path: "%kernel.logs_dir%/admin_actions.log" level: info channels: [admin_actions] @@ -122,7 +122,7 @@ when@prod: # Security security: - type: stream + type: rotating_file path: "%kernel.logs_dir%/security.log" level: warning channels: [security]