Show garage update logs immediately

This commit is contained in:
Mike Cifelli 2023-01-14 15:46:01 -05:00
parent 26c1b22f43
commit 68422656b3
1 changed files with 2 additions and 2 deletions

View File

@ -94,10 +94,10 @@ def garageNotifyLoop(queue):
if isFirstRun:
isFirstRun = False
else:
print('waiting to restart garage notify loop')
print('waiting to restart garage notify loop', flush=True)
sleep(GARAGE_LISTENER_RETRY_INTERVAL_IN_SECONDS)
print('listening for garage updates')
print('listening for garage updates', flush=True)
garageListener.listenForNotifications(queue)
except HaltException:
isRunning = False