node-logger
    Preparing search index...

    Interface LogEntry

    interface LogEntry {
        context?: Record<string, any>;
        error?: Error;
        level: LogLevel;
        message: string;
        tags?: string[];
        timestamp: Date;
    }
    Index

    Properties

    context?: Record<string, any>
    error?: Error
    level: LogLevel
    message: string
    tags?: string[]
    timestamp: Date