# Logging

Represented by `logger`.

* **`logger.info(msg: string)`**

  Log information to the console at the info level.

  ```lua
  logger.info("Message")
  ```
* **`logger.warn(msg: string)`**

  Log information to the console at the warning level.

  ```lua
  logger.warn("Message")
  ```
* **`logger.severe(msg: string)`**

  Log information to the console at the severe level.

  ```lua
  logger.severe("Message")
  ```
* **`logger.debug(msg: string)`**

  Log information to the console at the debug level.

  ```lua
  logger.debug("Message")
  ```
