don't combine frigate log lines with timestamp

This commit is contained in:
Josh Hawkins 2025-01-31 07:45:28 -06:00
parent 75da1f8452
commit d652d4e4d8

View File

@ -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]