Databricks SDK for JavaScript
    Preparing search index...

    A logger that receives messages at different severity levels.

    The method signatures are intentionally compatible with the global Console object so that console can be used as a Logger when level filtering is not needed.

    interface Logger {
        debug(message: string, ...args: unknown[]): void;
        error(message: string, ...args: unknown[]): void;
        info(message: string, ...args: unknown[]): void;
        warn(message: string, ...args: unknown[]): void;
    }

    Implemented by

    Index

    Methods