Package com.kamikazejam.kamicommon.util.log


package com.kamikazejam.kamicommon.util.log
  • Classes
    Class
    Description
    Simple colored logger that automatically parse legacy color codes using the section symbol (§) or ampersand (&).

    This logger is designed for use in Bukkit/Spigot/Paper plugins, and will prepend the plugin name to each message.

    It supports different log levels, and will colorize the output accordingly:
    - DEBUG (Level.FINE): Gray
    - INFO (Level.INFO): No colorization
    - WARNING (Level.WARNING): Yellow
    - SEVERE (Level.SEVERE): Red

    Note: The logger does not currently support other log levels.
    A simple logger service that provides an abstraction for where to log messages.

    Override LoggerService.logToConsole(java.lang.String, java.util.logging.Level) to change how log messages are processed.