blessed-components - v1.20.0
    Preparing search index...

    Interface LogEntry

    Structured log entry accepted by LogViewer.

    interface LogEntry {
        id: string;
        level?: LogLevel;
        message: string;
        source?: string;
        timestamp?: string | number | Date;
    }
    Index

    Properties

    id: string

    Stable entry id.

    level?: LogLevel

    Log severity.

    message: string

    Log message. ANSI sequences and Blessed tags are stripped.

    source?: string

    Optional source, subsystem, or logger name.

    timestamp?: string | number | Date

    Entry timestamp.