Lukkit
  • Home
  • Getting Started
    • Installing Lukkit
    • Your First Plugin
    • Packing and Publishing
  • Storage
    • The StorageObject
    • Example
  • Commands
    • Command Options
    • Command Event
    • Examples
  • Gui
    • Create a simple inv
    • Create an advanced inv
    • Run function if an inventory item has been clicked
  • Events
    • Examples
    • Event List
      • Block
      • Enchantment
      • Entity
      • Hanging
      • Inventory
      • Player
      • Server
      • Vehicle
      • Weather
      • World
  • Globals
    • Global Functions
    • Global Variables
      • Plugin
      • Logging
      • Utilities
  • Wrappers
  • Examples
    • Discord Webhooks (http)
    • Toggle Fly
    • Hello, world!
Powered by GitBook
On this page
  1. Globals
  2. Global Variables

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

Last updated 6 years ago