change logging level to debug

This commit is contained in:
Stefan Allius
2024-04-21 23:57:59 +02:00
parent 6dbf259e44
commit 59dabbfa4a

View File

@@ -13,7 +13,7 @@ class Schedule:
@classmethod
def start(cls) -> None:
'''Start the scheduler and schedule the tasks (cron jobs)'''
logging.info("Scheduler init")
logging.debug("Scheduler init")
cls.mqtt = Mqtt(None)
crontab('0 0 * * *', func=cls.atmidnight, start=True)