Amazon Vinyl
    Preparing search index...

    Interface HistoryLogHandler

    Logs to a rolling list.

    interface HistoryLogHandler {
        logLevel: LogLevel;
        maxHistorySize: number;
        get history(): readonly HistoryLogItem[];
        clear(): void;
    }

    Implemented by

    Index
    logLevel: LogLevel

    This level and higher will be logged to the history. Default is LogLevel.DEBUG

    maxHistorySize: number

    The maximum number of logs to keep.