From d652d4e4d85bc50f50ed2029e4e0c4e8023e3081 Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Fri, 31 Jan 2025 07:45:28 -0600 Subject: [PATCH] don't combine frigate log lines with timestamp --- frigate/api/app.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/frigate/api/app.py b/frigate/api/app.py index b6efaeb5e..e97e2d5d1 100644 --- a/frigate/api/app.py +++ b/frigate/api/app.py @@ -418,9 +418,7 @@ def process_logs( if date_end == 0: date_end = clean_line.index(" ") - # for frigate logs attempt to consolidate by comparing - # the first 3 characters of the millisecond portion - key_length = date_end - (6 if service == "frigate" else 0) + key_length = date_end new_key = clean_line[:key_length]