From 91965dfa4c4f1cff78c59ac6ad18768f1c9faed8 Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Mon, 17 Nov 2025 14:51:59 -0600 Subject: [PATCH] use debug log instead of info --- frigate/storage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/storage.py b/frigate/storage.py index 3e88a06aa..ee11cf7a9 100644 --- a/frigate/storage.py +++ b/frigate/storage.py @@ -254,7 +254,7 @@ class StorageMaintainer(threading.Thread): for i in range(0, len(events_to_update), max_deletes): batch = events_to_update[i : i + max_deletes] Event.update(has_clip=False).where(Event.id << batch).execute() - logger.info( + logger.debug( f"Updated has_clip to False for {len(events_to_update)} events" )