From dc09109a45724698b9a2264b3eb5a31da955d365 Mon Sep 17 00:00:00 2001 From: Javid Ahmed Date: Sun, 12 Apr 2026 22:23:33 +0100 Subject: [PATCH] Update logging format and date format in constants --- template_python/constants.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/template_python/constants.py b/template_python/constants.py index 36c0b02..792c79e 100644 --- a/template_python/constants.py +++ b/template_python/constants.py @@ -1,8 +1,8 @@ """Constants for codebases using this template.""" # Logging constants -LOGGING_FORMAT = "[%(asctime)s] %(levelname)s [%(module)s]: %(message)s" -LOGGING_DATE_FORMAT = "%d/%m/%Y | %H:%M:%S" +LOGGING_FORMAT = "[%(asctime)s] %(module)s.%(levelname)s: %(message)s" +LOGGING_DATE_FORMAT = "%d/%m/%Y|%H:%M:%S" LOGGING_LEVEL = "INFO" # Sphinx