Skip to content

Files

Latest commit

 

History

History
36 lines (22 loc) · 561 Bytes

File metadata and controls

36 lines (22 loc) · 561 Bytes

Logging

Represented by logger.

  • logger.info(msg: string)

    Log information to the console at the info level.

    logger.info("Message")
  • logger.warn(msg: string)

    Log information to the console at the warning level.

    logger.warn("Message")
  • logger.severe(msg: string)

    Log information to the console at the severe level.

    logger.severe("Message")
  • logger.debug(msg: string)

    Log information to the console at the debug level.

    logger.debug("Message")