Interface SerializableLogEntry

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

Properties

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