LogEntry
Defined in: src/components/feedback/LogView/LogView.types.ts:41
A single log line.
id is optional but recommended for stable virtualization keys; when
omitted LogView assigns a stable monotonic sequence id on insert. level
defaults to 'info'.
Properties
Section titled “Properties”
optionalid?:string
Defined in: src/components/feedback/LogView/LogView.types.ts:43
Stable identity used as the React/virtualization key. Auto-assigned when omitted.
level?
Section titled “level?”
optionallevel?:LogLevel
Defined in: src/components/feedback/LogView/LogView.types.ts:45
Severity.
Default
Section titled “Default”"info"message
Section titled “message”message:
string
Defined in: src/components/feedback/LogView/LogView.types.ts:47
The log message text.
optionalmeta?:Record<string,unknown>
Defined in: src/components/feedback/LogView/LogView.types.ts:53
Arbitrary structured payload. Not rendered by default; available to renderEntry.
source?
Section titled “source?”
optionalsource?:string
Defined in: src/components/feedback/LogView/LogView.types.ts:51
Optional source / category tag (e.g. a subsystem name). Included in text search.
timestamp?
Section titled “timestamp?”
optionaltimestamp?:number|Date
Defined in: src/components/feedback/LogView/LogView.types.ts:49
Optional timestamp (epoch ms or Date). Rendered when showTimestamps is on.