From 3bd8203c356de3afb3ce52d913cc2f26f2d42853 Mon Sep 17 00:00:00 2001 From: Chirag Jain Date: Thu, 14 Mar 2024 20:35:21 +0530 Subject: [PATCH] Don't disable existing loggers when configuring axolotl logging (#1395) --- src/axolotl/logging_config.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/axolotl/logging_config.py b/src/axolotl/logging_config.py index 8f473aa24..2ddf89a8c 100644 --- a/src/axolotl/logging_config.py +++ b/src/axolotl/logging_config.py @@ -30,6 +30,7 @@ class ColorfulFormatter(Formatter): DEFAULT_LOGGING_CONFIG: Dict[str, Any] = { "version": 1, + "disable_existing_loggers": False, "formatters": { "simple": { "format": "[%(asctime)s] [%(levelname)s] [%(name)s.%(funcName)s:%(lineno)d] [PID:%(process)d] %(message)s",