Constructors

Properties

Methods

Constructors

Properties

level: LogLevel = 'verbose'

Methods

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

    Parameters

    • ...args: unknown[]

    Returns void

  • Same as console.error. Will always log

    Parameters

    • ...args: unknown[]

    Returns void

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

    Parameters

    • ...args: unknown[]

    Returns void

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

    Parameters

    • ...args: unknown[]

    Returns void

  • Parameters

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

    Returns void

  • Same as console.trace. Will always log

    Parameters

    • ...args: unknown[]

    Returns void

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

    Parameters

    • ...args: unknown[]

    Returns void