gremlin
    Preparing search index...

    Interface LoggerObject

    A logger object with one method per LogLevel. This shape is compatible with the global console as well as common logging libraries.

    interface LoggerObject {
        debug(message: string, ...args: any[]): void;
        error(message: string, ...args: any[]): void;
        info(message: string, ...args: any[]): void;
        warn(message: string, ...args: any[]): void;
    }
    Index

    Methods