fix(playout): proper logger format string

This commit is contained in:
jo 2022-02-02 14:02:07 +01:00 committed by Kyle Robbertze
parent 784b9fb225
commit 348d2d81f0
2 changed files with 2 additions and 2 deletions

View File

@ -504,7 +504,7 @@ class PypoFetch(Thread):
loops = 1
while True:
logger.info("Loop #%s", loops)
logger.info(f"Loop #{loops}")
manual_fetch_needed = False
try:
"""

View File

@ -53,7 +53,7 @@ class PypoLiqQueue(Thread):
else:
time_until_next_play = None
else:
logger.info("New schedule received: %s", media_schedule)
logger.info("New schedule received")
# new schedule received. Replace old one with this.
schedule_deque.clear()