mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-12-06 21:44:13 +03:00
use debug log instead of info
This commit is contained in:
parent
16237c69ad
commit
91965dfa4c
@ -254,7 +254,7 @@ class StorageMaintainer(threading.Thread):
|
|||||||
for i in range(0, len(events_to_update), max_deletes):
|
for i in range(0, len(events_to_update), max_deletes):
|
||||||
batch = events_to_update[i : i + max_deletes]
|
batch = events_to_update[i : i + max_deletes]
|
||||||
Event.update(has_clip=False).where(Event.id << batch).execute()
|
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"
|
f"Updated has_clip to False for {len(events_to_update)} events"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user