Options
All
  • Public
  • Public/Protected
  • All
Menu

Class Logger

Provides configurable logging functions. Please note that the default log level is debug.

logger.log( "log message" );

Hierarchy

Index

Methods

Abstract debug

  • debug(...args: unknown[]): void

Abstract error

  • error(...args: unknown[]): void

Abstract getLevel

  • getLevel(): string

Abstract info

  • info(...args: unknown[]): void

Abstract log

  • log(...args: unknown[]): void

Abstract setLevel

  • Sets the log level. The log level must be one of the following:

    • debug
    • info
    • wrn
    • error
    • log

    The order of levels is log > error > warn > info > debug. Logs which are higher than or equals to the log level are logged. Setting the log level to warn, for instance, logs of the levels error and warn are logged. The default log level is debug.

    logger.setLevel( "debug" );

    Parameters

    Returns Logger

    this;

Abstract warn

  • warn(...args: unknown[]): void

Static getInstance

Generated using TypeDoc