From 4f917a9a8161bd35e21f58011c3a21cd0ebe992b Mon Sep 17 00:00:00 2001 From: Jet Li Date: Sat, 1 Feb 2025 07:14:17 +0000 Subject: [PATCH] Fix the typo used in the authentication log --- apps/authentication/common/log/base_logger.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/authentication/common/log/base_logger.py b/apps/authentication/common/log/base_logger.py index 49e773d..31d3c97 100644 --- a/apps/authentication/common/log/base_logger.py +++ b/apps/authentication/common/log/base_logger.py @@ -20,7 +20,7 @@ class LoggerBase: self.logger = LoggerBase.binded_loggers[self.__logger_name] return - log_filename = f"{log_settings.LOG_BASE_PATH}/{self.__logger_name}.log" + log_filename = f"{log_settings.LOG_PATH_BASE}/{self.__logger_name}.log" # ✅ **Ensure Loguru sink is added only once** if log_filename not in LoggerBase.loguru_sinks_added: