mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-02-12 22:25:24 +03:00
ignore lines without any spaces
This commit is contained in:
parent
8295a0de73
commit
f43240a985
@ -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:
|
||||
|
||||
Loading…
Reference in New Issue
Block a user