LogEntry interface exported

Last updated: 2026-03-01T23:25:47.125Z

Metrics

LOC: 10 Complexity: 1 Params: 0

Signature

interface LogEntry

Source Code

export interface LogEntry {
  /** ISO timestamp */
  ts: string;
  /** Log level */
  level: LogLevel;
  /** Logger namespace (e.g. "FormFiller", "ChromeAI") */
  ns: string;
  /** Formatted message text */
  msg: string;
}

Dependencies (Outgoing)

graph LR LogEntry["LogEntry"] LogLevel["LogLevel"] LogEntry -->|uses| LogLevel style LogEntry fill:#dbeafe,stroke:#2563eb,stroke-width:2px click LogEntry "472716e088174f12.html" click LogLevel "c16627126b9be48e.html"
TargetType
LogLevel uses

No incoming dependencies.