Datalayer VS Code Extension - v0.0.17
    Preparing search index...

    Interface PerformanceTimerLogger

    Logger interface for performance timing with leveled output methods.

    interface PerformanceTimerLogger {
        debug: (msg: string, ctx?: Record<string, unknown>) => void;
        error: (msg: string, err?: Error, ctx?: Record<string, unknown>) => void;
        info: (msg: string, ctx?: Record<string, unknown>) => void;
        trace: (msg: string, ctx?: Record<string, unknown>) => void;
        warn: (msg: string, ctx?: Record<string, unknown>) => void;
    }
    Index

    Properties

    debug: (msg: string, ctx?: Record<string, unknown>) => void

    Logs debug-level timing details.

    error: (msg: string, err?: Error, ctx?: Record<string, unknown>) => void

    Logs errors for failed operations.

    info: (msg: string, ctx?: Record<string, unknown>) => void

    Logs info-level timing summaries.

    trace: (msg: string, ctx?: Record<string, unknown>) => void

    Logs trace-level timing details.

    warn: (msg: string, ctx?: Record<string, unknown>) => void

    Logs warnings for slow operations.