@nebius/js-sdk - v0.2.54
    Preparing search index...

    Type Alias HandlerOpts

    Configures defaultHandler and fallback handling in resolveLogger.

    type HandlerOpts = {
        alwaysAddTrace?: boolean;
        colored?: boolean;
        filters?: Filters;
        level?: Level;
        output?: Output;
        useJson?: boolean;
    }
    Index
    alwaysAddTrace?: boolean

    Adds a call-site trace even when the logger does not request one.

    colored?: boolean

    Selects the pretty colored handler when JSON output is disabled.

    filters?: Filters

    Selects logger names. Any matching filter accepts the record.

    level?: Level

    Sets the minimum emitted level. The default is Level.INFO.

    output?: Output

    Selects a console-like object, writer function, or append-only file path.

    useJson?: boolean

    Selects newline-delimited JSON output.