Constructors

Properties

Methods

Constructors

Properties

level: string = 'verbose'

Methods

  • Same as console.debug. Will not log if level is 'error' or 'off'

    Parameters

    • ...args: any[]

    Returns void

  • Same as console.error. Will always log

    Parameters

    • ...args: any[]

    Returns void

  • Same as console.info. Will not log if level is 'error' or 'off'

    Parameters

    • ...args: any[]

    Returns void

  • Same as console.log. Will not log if level is 'error' or 'off'

    Parameters

    • ...args: any[]

    Returns void

  • Parameters

    • method: keyof Console
    • ...args: any[]

    Returns void

  • Same as console.trace. Will always log

    Parameters

    • ...args: any[]

    Returns void

  • Same as console.warn. Will not log if level is 'error' or 'off'

    Parameters

    • ...args: any[]

    Returns void