mirror of
https://github.com/blakeblackshear/frigate.git
synced 2025-01-21 00:06:44 +01:00
Always handle random lines on frigate logs (#10904)
This commit is contained in:
parent
9281093740
commit
c08a198354
@ -105,7 +105,12 @@ function Logs() {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
return null;
|
return {
|
||||||
|
dateStamp: line.substring(0, 19),
|
||||||
|
severity: "unknown",
|
||||||
|
section: "unknown",
|
||||||
|
content: line.substring(30).trim(),
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
const sectionMatch = frigateSection.exec(
|
const sectionMatch = frigateSection.exec(
|
||||||
|
Loading…
Reference in New Issue
Block a user