From ba0b6071e64f6765eab0ed768bbfe166372bbc25 Mon Sep 17 00:00:00 2001 From: dgtlmoon Date: Wed, 28 May 2025 09:25:23 +0200 Subject: [PATCH] Realtime UI - Reducing log output --- changedetectionio/realtime/socket_server.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/changedetectionio/realtime/socket_server.py b/changedetectionio/realtime/socket_server.py index f98329ae..9f7c39cf 100644 --- a/changedetectionio/realtime/socket_server.py +++ b/changedetectionio/realtime/socket_server.py @@ -52,7 +52,7 @@ class SignalHandler: else: handle_watch_update(self.socketio_instance, watch=watch, datastore=self.datastore) - logger.info(f"Signal handler processed watch UUID {watch_uuid}") + logger.trace(f"Signal handler processed watch UUID {watch_uuid}") else: logger.warning(f"Watch UUID {watch_uuid} not found in datastore") @@ -94,7 +94,7 @@ class SignalHandler: # For each item in the queue, send a signal, so we update the UI for t in running_update_threads: if hasattr(t, 'current_uuid') and t.current_uuid: - logger.debug(f"Sending update for {t.current_uuid}") + logger.trace(f"Sending update for {t.current_uuid}") # Send with app_context to ensure proper URL generation with app.app_context(): watch_check_update.send(app_context=app, watch_uuid=t.current_uuid)