Skip to content

Commit

Permalink
Downgrade logs
Browse files Browse the repository at this point in the history
  • Loading branch information
NickM-27 committed Oct 18, 2023
1 parent e36cabe commit 44fb4da
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions frigate/record/maintainer.py
Expand Up @@ -439,14 +439,14 @@ def run(self) -> None:
except queue.Empty:
q_size = self.object_recordings_info_queue.qsize()
if q_size > camera_count:
logger.warning(
f"object_recordings_info loop queue not empty ({q_size}) - recording segments may be missing"
logger.debug(
f"object_recordings_info loop queue not empty ({q_size})."
)
break

if stale_frame_count > 0:
logger.error(
f"Found {stale_frame_count} old frames, segments from recordings may be missing"
logger.warning(
f"Found {stale_frame_count} old frames, segments from recordings may be missing."
)

# empty the audio recordings info queue if audio is enabled
Expand Down Expand Up @@ -474,8 +474,8 @@ def run(self) -> None:
except queue.Empty:
q_size = self.audio_recordings_info_queue.qsize()
if q_size > camera_count:
logger.warning(
f"object_recordings_info loop audio queue not empty ({q_size}) - recording segments may be missing"
logger.debug(
f"object_recordings_info loop audio queue not empty ({q_size})."
)
break

Expand Down

0 comments on commit 44fb4da

Please sign in to comment.