SongGuess
    Preparing search index...

    Storage container for log messages organized by log level.

    interface LoggerStorage {
        debug: LogEntry[];
        error: LogEntry[];
        info: LogEntry[];
        warn: LogEntry[];
    }
    Index

    Properties

    Properties

    debug: LogEntry[]

    Array of debug log entries

    error: LogEntry[]

    Array of error log entries

    info: LogEntry[]

    Array of informational log entries

    warn: LogEntry[]

    Array of warning log entries