Logging
Represented by logger
.
logger.info(msg: string)
Log information to the console at the info level.
logger.warn(msg: string)
Log information to the console at the warning level.
logger.severe(msg: string)
Log information to the console at the severe level.
logger.debug(msg: string)
Log information to the console at the debug level.
Last updated