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;} Copy
export interface SerializableLogEntry { id: string; level: LogLevel; message: string; details: string[]; timestamp: string; source?: string; isDebug?: boolean; groupPath?: string[]; groupDepth?: number;}
Optional
Serializable log entry suitable for export or storage; stripped of internal state.
Source