Interface Logger


public interface Logger
Logger contract.
  • Method Details

    • trace

      void trace(String message)
      Log message with TRACE level. This methods avoid the cost of creation an array of object when it is called without arguments.
      Parameters:
      message - Message.
    • trace

      void trace(String message, Object arg1)
      Log message with TRACE level. This methods avoid the cost of creation an array of object when it is called with only one argument.
      Parameters:
      message - Message.
      arg1 - Message replacement.
    • trace

      void trace(String message, Object arg1, Object arg2)
      Log message with TRACE level. This methods avoid the cost of creation an array of object when it is called with only two arguments.
      Parameters:
      message - Message.
      arg1 - First message replacement.
      arg2 - Second message replacement.
    • trace

      void trace(String message, Object... args)
      Log message with TRACE level.
      Parameters:
      message - Message.
      args - Message replacements.
    • debug

      void debug(String message)
      Log message with DEBUG level. This methods avoid the cost of creation an array of object when it is called without arguments.
      Parameters:
      message - Message.
    • debug

      void debug(String message, Object arg1)
      Log message with DEBUG level. This methods avoid the cost of creation an array of object when it is called with only one argument.
      Parameters:
      message - Message.
      arg1 - Message replacement.
    • debug

      void debug(String message, Object arg1, Object arg2)
      Log message with DEBUG level. This methods avoid the cost of creation an array of object when it is called with only two arguments.
      Parameters:
      message - Message.
      arg1 - First message replacement.
      arg2 - Second message replacement.
    • debug

      void debug(String message, Object... args)
      Log message with DEBUG level.
      Parameters:
      message - Message.
      args - Message replacements.
    • info

      void info(String message)
      Log message with INFO level. This methods avoid the cost of creation an array of object when it is called without argument.
      Parameters:
      message - Message.
    • info

      void info(String message, Object arg1)
      Log message with INFO level. This methods avoid the cost of creation an array of object when it is called with only one argument.
      Parameters:
      message - Message.
      arg1 - Message replacement.
    • info

      void info(String message, Object arg1, Object arg2)
      Log message with INFO level. This methods avoid the cost of creation an array of object when it is called with only two arguments.
      Parameters:
      message - Message.
      arg1 - First message replacement.
      arg2 - Second message replacement.
    • info

      void info(String message, Object... args)
      Log message with INFO level.
      Parameters:
      message - Message.
      args - Message replacements.
    • warn

      void warn(String message)
      Log message with WARN level. This methods avoid the cost of creation an array of object when it is called without argument.
      Parameters:
      message - Message.
    • warn

      void warn(String message, Object arg1)
      Log message with WARN level. This methods avoid the cost of creation an array of object when it is called with only one argument.
      Parameters:
      message - Message.
      arg1 - Message replacement.
    • warn

      void warn(String message, Object arg1, Object arg2)
      Log message with WARN level. This methods avoid the cost of creation an array of object when it is called with only two arguments.
      Parameters:
      message - Message.
      arg1 - First message replacement.
      arg2 - Second message replacement.
    • warn

      void warn(String message, Object... args)
      Log message with WARN level.
      Parameters:
      message - Message.
      args - Message replacements.
    • error

      void error(String message)
      Log message with ERROR level. This methods avoid the cost of creation an array of object when it is called without arguments.
      Parameters:
      message - Message.
    • error

      void error(String message, Object arg1)
      Log message with ERROR level. This methods avoid the cost of creation an array of object when it is called with only one argument.
      Parameters:
      message - Message.
      arg1 - Message replacement.
    • error

      void error(String message, Object arg1, Object arg2)
      Log message with ERROR level. This methods avoid the cost of creation an array of object when it is called with only two arguments.
      Parameters:
      message - Message.
      arg1 - First message replacement.
      arg2 - Second message replacement.
    • error

      void error(String message, Object... args)
      Log message with ERROR level.
      Parameters:
      message - Message.
      args - Message replacements.
    • error

      void error(String message, Throwable t)
      Log an exception (throwable) at the ERROR level with an accompanying message.
      Parameters:
      message - The message accompanying the exception
      t - The exception (throwable) to log