disable log

This commit is contained in:
2025-01-27 11:37:09 +01:00
parent c427202b2a
commit d3cc6a35a3

View File

@@ -12,7 +12,7 @@ def stringToDate(date: str) -> QtCore.QDate:
Returns: Returns:
QtCore.QDate: the QDate object in string format DD.MM.yyyy QtCore.QDate: the QDate object in string format DD.MM.yyyy
""" """
log.debug(f"stringToDate: {date}") #log.debug(f"stringToDate: {date}")
if not date: if not date:
return "" return ""
if isinstance(date, QtCore.QDate): if isinstance(date, QtCore.QDate):