From 7e48b3514c710d7a21b348514fd421b3f06cb137 Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Tue, 11 Feb 2025 06:19:54 -0600 Subject: [PATCH] remove extraneous print from recordings summary code (#16468) --- frigate/api/media.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/frigate/api/media.py b/frigate/api/media.py index f67ad52f2..39a6f7d1e 100644 --- a/frigate/api/media.py +++ b/frigate/api/media.py @@ -409,8 +409,6 @@ def all_recordings_summary(params: MediaRecordingsSummaryQueryParams = Depends() if cameras != "all": query = query.where(Recordings.camera << cameras.split(",")) - print(query) - recording_days = query.namedtuples() days = {day.day: True for day in recording_days}