diff --git a/backend/automation/comparator.py b/backend/automation/comparator.py index 8552383..5c116af 100644 --- a/backend/automation/comparator.py +++ b/backend/automation/comparator.py @@ -425,7 +425,10 @@ def init_amount_checker(amount_str: str) -> int: 0: logging.ERROR, 1: logging.INFO, } - logging.basicConfig(level=log_levels.get(args.verbose, logging.DEBUG)) + logging.basicConfig( + level=log_levels.get(args.verbose, logging.DEBUG), + format="%(asctime)s - %(name)s - %(levelname)s - %(message)s", + ) projects_tags = ProjectsManager.get_projects_tags_for_comparison( projects=args.projects,