Logs the specified message at the debug
level.
logger.debug( "debug message" );
Logs the specified message at the error
level.
logger.error( "error message" );
Returns the log level.
logger.getLevel();
the log level
Logs the specified message at the info
level.
logger.info( "infomation message" );
Logs the specified message at the log
level.
logger.log( "log message" );
Sets the log level. The log level must be one of the following:
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" );
the log level
this;
Logs the specified message at the info
level.
logger.warn( "warning message" );
Generated using TypeDoc
Provides configurable logging functions. Please note that the default log level is
debug
.logger.log( "log message" );