From ad560c5b4e67730a4f059cf9400d370978606718 Mon Sep 17 00:00:00 2001 From: IvanildoBarauna Date: Sat, 13 Dec 2025 21:38:21 -0300 Subject: [PATCH] feat: removing asctime in default loggging --- backend/src/infrastructure/utils/logger.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/src/infrastructure/utils/logger.py b/backend/src/infrastructure/utils/logger.py index 727f386..3c352ff 100644 --- a/backend/src/infrastructure/utils/logger.py +++ b/backend/src/infrastructure/utils/logger.py @@ -22,7 +22,7 @@ def __new__(cls): @staticmethod def _configure_logger() -> logging.Logger: """Configure the logger.""" - log_format = "%(asctime)s - %(name)s - %(levelname)s - %(message)s" + log_format = "%(name)s - %(levelname)s - %(message)s" log_level = os.environ.get("LOG_LEVEL", "INFO") # Create logger