Interface

ILogger

ILogger

Represents a logger

View Source logging/ILogger.ts, line 4

Methods

# debug(module, messageOrObject)

Logs to the DEBUG channel
Parameters:
Name Type Description
module string The module being logged
messageOrObject Array.<any> The data to log

View Source logging/ILogger.ts, line 33

# error(module, messageOrObject)

Logs to the ERROR channel
Parameters:
Name Type Description
module string The module being logged
messageOrObject Array.<any> The data to log

View Source logging/ILogger.ts, line 25

# info(module, messageOrObject)

Logs to the INFO channel
Parameters:
Name Type Description
module string The module being logged
messageOrObject Array.<any> The data to log

View Source logging/ILogger.ts, line 9

# trace(module, messageOrObject)

Logs to the TRACE channel
Parameters:
Name Type Description
module string The module being logged
messageOrObject Array.<any> The data to log

View Source logging/ILogger.ts, line 41

# warn(module, messageOrObject)

Logs to the WARN channel
Parameters:
Name Type Description
module string The module being logged
messageOrObject Array.<any> The data to log

View Source logging/ILogger.ts, line 17