Class ValorlessUtils.Log

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

@MarkedForRemoval("Replaced by valorless.valorlessutils.logging.Log") @Deprecated(forRemoval=true) public static class ValorlessUtils.Log extends Object
Deprecated, for removal: This API element is subject to removal in a future version.
Replaced by Log.
Logging utility methods.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Log()
    Deprecated, for removal: This API element is subject to removal in a future version.
     
  • Method Summary

    Modifier and Type
    Method
    Description
    static void
    Debug(org.bukkit.plugin.java.JavaPlugin caller, String msg)
    Deprecated, for removal: This API element is subject to removal in a future version.
    static void
    Error(org.bukkit.plugin.java.JavaPlugin caller, String msg)
    Deprecated, for removal: This API element is subject to removal in a future version.
    static void
    Info(org.bukkit.plugin.java.JavaPlugin caller, String msg)
    Deprecated, for removal: This API element is subject to removal in a future version.
    static void
    Warning(org.bukkit.plugin.java.JavaPlugin caller, String msg)
    Deprecated, for removal: This API element is subject to removal in a future version.

    Methods inherited from class java.lang.Object

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

    • Log

      public Log()
      Deprecated, for removal: This API element is subject to removal in a future version.
  • Method Details

    • Info

      @MarkedForRemoval("Replaced by valorless.valorlessutils.logging.Log.info()") @Deprecated(forRemoval=true) public static void Info(org.bukkit.plugin.java.JavaPlugin caller, String msg)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Logs an informational message.
      Parameters:
      caller - Plugin sending the log.
      msg - Message to log.
    • Warning

      @MarkedForRemoval("Replaced by valorless.valorlessutils.logging.Log.warning()") @Deprecated(forRemoval=true) public static void Warning(org.bukkit.plugin.java.JavaPlugin caller, String msg)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Logs a warning message.
      Parameters:
      caller - Plugin sending the log.
      msg - Message to log.
    • Error

      @MarkedForRemoval("Replaced by valorless.valorlessutils.logging.Log.error()") @Deprecated(forRemoval=true) public static void Error(org.bukkit.plugin.java.JavaPlugin caller, String msg)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Logs an error message.
      Parameters:
      caller - Plugin sending the log.
      msg - Message to log.
    • Debug

      @MarkedForRemoval("Replaced by valorless.valorlessutils.logging.Log.debug()") @Deprecated(forRemoval=true) public static void Debug(org.bukkit.plugin.java.JavaPlugin caller, String msg)
      Deprecated, for removal: This API element is subject to removal in a future version.
      Logs a debug message if debug mode is enabled.
      Parameters:
      caller - Plugin sending the log.
      msg - Debug message to log.