From 68422656b3f8c827627dd3c40efe484ad77e5e0c Mon Sep 17 00:00:00 2001 From: Mike Cifelli <1836280-mike-cifelli@users.noreply.gitlab.com> Date: Sat, 14 Jan 2023 15:46:01 -0500 Subject: [PATCH] Show garage update logs immediately --- chutney/runner.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/chutney/runner.py b/chutney/runner.py index 0a02d58..7e239fc 100644 --- a/chutney/runner.py +++ b/chutney/runner.py @@ -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