Member Junction
    Preparing search index...

    A single captured event entry with timestamp and metadata.

    interface LogEntry {
        Level: LogLevel;
        Message: string;
        Phase?: PhaseId;
        Source: string;
        Timestamp: string;
    }
    Index

    Properties

    Level: LogLevel

    Severity level derived from the source event type.

    Message: string

    Human-readable message describing the event.

    Phase?: PhaseId

    Phase that produced the event (if applicable).

    Source: string

    Source event type (e.g., 'phase:start', 'error', 'step:progress').

    Timestamp: string

    ISO 8601 timestamp when the event was captured.