From f43240a9854fb4ce8fee38a5b74fc2f4b931254d Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Sun, 16 Jun 2024 21:06:22 -0600 Subject: [PATCH] ignore lines without any spaces --- frigate/api/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/api/app.py b/frigate/api/app.py index e97509998..787a08784 100644 --- a/frigate/api/app.py +++ b/frigate/api/app.py @@ -481,7 +481,7 @@ def logs(service: str): for rawLine in contents.splitlines(): cleanLine = rawLine.strip() - if len(cleanLine) < 10: + if len(cleanLine) < 10 or " " not in cleanLine: continue if dateEnd == 0: