Logger

Logger

new Logger()

Source:
See:
  • utils/logger

A logger class that you can mix into your classes to handle logging settings and state at an object level.
See utils/logger for the members of this class

Methods

all()

Source:

Turns on all logging levels

debug(The)

Source:

Log a debug call

Parameters:
Name Type Description
The string

value to log

error(The)

Source:

Log a error call

Parameters:
Name Type Description
The string

value to log

info(The)

Source:

Log a info call

Parameters:
Name Type Description
The string

value to log

level(lvl)

Source:

Sets the logging level to one of trace, debug, info, warn, error.

Parameters:
Name Type Description
lvl string

The level to set it to. Can be one of trace, debug, info, warn, error.

silent()

Source:

Turn off all logging. If you log something, it will not error, but will not do anything either
and the cycles are minimal.

trace(The)

Source:

Log a trace call

Parameters:
Name Type Description
The string

value to log

warn(The)

Source:

Log a warn call

Parameters:
Name Type Description
The string

value to log