Interface SerializableLogEntry

Serializable log entry suitable for export or storage; stripped of internal state.

export interface SerializableLogEntry {
id: string;
level: LogLevel;
message: string;
details: string[];
timestamp: string;
source?: string;
isDebug?: boolean;
groupPath?: string[];
groupDepth?: number;
}
interface SerializableLogEntry {
    id: string;
    level: LogLevel;
    message: string;
    details: string[];
    timestamp: string;
    source?: string;
    isDebug?: boolean;
    groupPath?: string[];
    groupDepth?: number;
}

Properties

id: string
level: LogLevel
message: string
details: string[]
timestamp: string
source?: string
isDebug?: boolean
groupPath?: string[]
groupDepth?: number