From d3cc6a35a36cc566a1f9225bda541f319c215c1a Mon Sep 17 00:00:00 2001 From: WorldTeacher Date: Mon, 27 Jan 2025 11:37:09 +0100 Subject: [PATCH] disable log --- src/utils/stringtodate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/stringtodate.py b/src/utils/stringtodate.py index da77522..8ed477d 100644 --- a/src/utils/stringtodate.py +++ b/src/utils/stringtodate.py @@ -12,7 +12,7 @@ def stringToDate(date: str) -> QtCore.QDate: Returns: QtCore.QDate: the QDate object in string format DD.MM.yyyy """ - log.debug(f"stringToDate: {date}") + #log.debug(f"stringToDate: {date}") if not date: return "" if isinstance(date, QtCore.QDate):