Support grouped system log messages (#5030)

* Support grouped system log messages

* Format source
This commit is contained in:
Paulus Schoutsen
2020-03-03 13:55:26 -08:00
committed by GitHub
parent aa2e632df3
commit 54739c7ccd
3 changed files with 16 additions and 8 deletions

View File

@@ -2,9 +2,9 @@ import { HomeAssistant } from "../types";
export interface LoggedError {
name: string;
message: string;
message: [string];
level: string;
source: string;
source: [string, number];
// unix timestamp in seconds
timestamp: number;
exception: string;