From 26a349146602617f53b07b940575db292fb4166d Mon Sep 17 00:00:00 2001 From: Blake Blackshear Date: Sat, 13 Feb 2021 09:56:26 -0600 Subject: [PATCH] revise log messages --- frigate/watchdog.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frigate/watchdog.py b/frigate/watchdog.py index 30ca5aa81..62150cd38 100644 --- a/frigate/watchdog.py +++ b/frigate/watchdog.py @@ -31,8 +31,8 @@ class FrigateWatchdog(threading.Thread): detection_start = detector.detection_start.value if (detection_start > 0.0 and now - detection_start > 10): - logger.info("Detection appears to be stuck. Restarting detection process") + logger.info("Detection appears to be stuck. Restarting detection process...") detector.start_or_restart() elif not detector.detect_process.is_alive(): - logger.info("Detection appears to have stopped. Restarting frigate") + logger.info("Detection appears to have stopped. Exiting frigate...") os.kill(os.getpid(), signal.SIGTERM)