From d65f70774a17ed13670ed27f96e6704ec5d71101 Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Wed, 25 Jun 2025 16:28:11 -0500 Subject: [PATCH] Add another frame cache debug log --- frigate/camera/state.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/camera/state.py b/frigate/camera/state.py index c05eaa486..620873cba 100644 --- a/frigate/camera/state.py +++ b/frigate/camera/state.py @@ -445,7 +445,7 @@ class CameraState: obj.thumbnail_data["frame_time"] if obj.thumbnail_data else None ) logger.debug( - f"{self.name}: Tracked object {obj_id} thumbnail frame_time: {thumb_time}" + f"{self.name}: Tracked object {obj_id} thumbnail frame_time: {thumb_time}, false positive: {obj.false_positive}" ) for t in thumb_frames_to_delete: object_id = self.frame_cache[t].get("object_id", "unknown")