@ckir/corelib - v0.1.13
    Preparing search index...

    Interface StrictLogger

    interface StrictLogger {
        bindings: () => Record<string, unknown>;
        child: (bindings: Record<string, unknown>) => StrictLogger;
        debug: LogMethod;
        error: LogMethod;
        fatal: LogMethod;
        info: LogMethod;
        level: string;
        levelVal: number;
        setTelemetry: (mode: "on" | "off") => void;
        silent: (...args: unknown[]) => void;
        trace: LogMethod;
        warn: LogMethod;
    }
    Index

    Properties

    bindings: () => Record<string, unknown>
    child: (bindings: Record<string, unknown>) => StrictLogger
    debug: LogMethod
    error: LogMethod
    fatal: LogMethod
    info: LogMethod
    level: string
    levelVal: number
    setTelemetry: (mode: "on" | "off") => void
    silent: (...args: unknown[]) => void
    trace: LogMethod
    warn: LogMethod