Class ValorlessUtils.Log

java.lang.Object
valorless.valorlessutils.ValorlessUtils.Log
Enclosing class:
ValorlessUtils

@MarkedForRemoval("Replaced by valorless.valorlessutils.logging.Log") @Deprecated public static class ValorlessUtils.Log extends Object
Deprecated.
Replaced by Log.
Logging utility methods.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Log()
    Deprecated.
     
  • Method Summary

    Modifier and Type
    Method
    Description
    static void
    Debug(org.bukkit.plugin.java.JavaPlugin caller, String msg)
    Deprecated.
    static void
    Error(org.bukkit.plugin.java.JavaPlugin caller, String msg)
    Deprecated.
    static void
    Info(org.bukkit.plugin.java.JavaPlugin caller, String msg)
    Deprecated.
    static void
    Warning(org.bukkit.plugin.java.JavaPlugin caller, String msg)
    Deprecated.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • Log

      public Log()
      Deprecated.
  • Method Details

    • Info

      @MarkedForRemoval("Replaced by valorless.valorlessutils.logging.Log.info()") @Deprecated public static void Info(org.bukkit.plugin.java.JavaPlugin caller, String msg)
      Deprecated.
      Logs an informational message.
      Parameters:
      caller - Plugin sending the log.
      msg - Message to log.
    • Warning

      @MarkedForRemoval("Replaced by valorless.valorlessutils.logging.Log.warning()") @Deprecated public static void Warning(org.bukkit.plugin.java.JavaPlugin caller, String msg)
      Deprecated.
      Logs a warning message.
      Parameters:
      caller - Plugin sending the log.
      msg - Message to log.
    • Error

      @MarkedForRemoval("Replaced by valorless.valorlessutils.logging.Log.error()") @Deprecated public static void Error(org.bukkit.plugin.java.JavaPlugin caller, String msg)
      Deprecated.
      Logs an error message.
      Parameters:
      caller - Plugin sending the log.
      msg - Message to log.
    • Debug

      @MarkedForRemoval("Replaced by valorless.valorlessutils.logging.Log.debug()") @Deprecated public static void Debug(org.bukkit.plugin.java.JavaPlugin caller, String msg)
      Deprecated.
      Logs a debug message if debug mode is enabled.
      Parameters:
      caller - Plugin sending the log.
      msg - Debug message to log.