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")

Last updated