From 511fbe4ef4ac3506077bda928b33d2b15f63cf76 Mon Sep 17 00:00:00 2001 From: Nick Mowen Date: Wed, 4 Oct 2023 06:20:30 -0600 Subject: [PATCH] Cleanup --- frigate/timeline.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/frigate/timeline.py b/frigate/timeline.py index 3ac49de5c..93451acdb 100644 --- a/frigate/timeline.py +++ b/frigate/timeline.py @@ -95,12 +95,10 @@ class TimelineProcessor(threading.Thread): ) Timeline.insert(timeline_entry).execute() elif prev_event_data["attributes"] == {} and event_data["attributes"] != {}: - logger.error(f"Saving info {event_data['attributes']}") timeline_entry[Timeline.class_type] = "attribute" timeline_entry[Timeline.data]["attribute"] = list( event_data["attributes"].keys() )[0] - logger.error(f"The data is {timeline_entry}") Timeline.insert(timeline_entry).execute() elif event_type == "end": timeline_entry[Timeline.class_type] = "gone"