@cucumber/cucumber
    Preparing search index...

    Interface ILogger

    A logger that can be used to direct messages to stderr or similar

    Matches the interface of Node.js Console, for the methods it has.

    interface ILogger {
        debug: (message?: any, ...optionalParams: any[]) => void;
        error: (message?: any, ...optionalParams: any[]) => void;
        info: (message?: any, ...optionalParams: any[]) => void;
        warn: (message?: any, ...optionalParams: any[]) => void;
    }
    Index

    Properties

    Properties

    debug: (message?: any, ...optionalParams: any[]) => void
    error: (message?: any, ...optionalParams: any[]) => void
    info: (message?: any, ...optionalParams: any[]) => void
    warn: (message?: any, ...optionalParams: any[]) => void