mwg API
    Preparing search index...

    Interface LoggerOptions

    interface LoggerOptions {
        level?: LogLevel;
        sink?: (entry: LogEntry) => void;
    }
    Index
    level?: LogLevel

    entries below this never reach the sink; defaults to debug (everything)

    sink?: (entry: LogEntry) => void

    where entries go; defaults to the matching console method