Interface FloodgateLogger


public interface FloodgateLogger
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final String
     
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    debug(String message, Object... args)
    Logs a debug message to the console, with 0 or more arguments.
    void
    error(String message, Object... args)
    Logs an error message to the console, with 0 or more arguments.
    void
    error(String message, Throwable throwable, Object... args)
    Logs an error message to the console, with 0 or more arguments.
    void
    info(String message, Object... args)
    Logs an info message to the console, with 0 or more arguments.
    boolean
    Returns true if debugging is enabled
    void
    trace(String message, Object... args)
    Logs a trace message to the console, with 0 or more arguments.
    void
    translatedInfo(String message, Object... args)
     
    void
    warn(String message, Object... args)
    Logs a warning message to the console, with 0 or more arguments.
  • Field Details

  • Method Details

    • error

      void error(String message, Object... args)
      Logs an error message to the console, with 0 or more arguments.
      Parameters:
      message - the message to log to the console
      args - the arguments to fill the missing spots in the message
    • error

      void error(String message, Throwable throwable, Object... args)
      Logs an error message to the console, with 0 or more arguments.
      Parameters:
      message - the message to log to the console
      throwable - the throwable to log
      args - the arguments to fill the missing spots in the message
    • warn

      void warn(String message, Object... args)
      Logs a warning message to the console, with 0 or more arguments.
      Parameters:
      message - the message to log to the console
      args - the arguments to fill the missing spots in the message
    • info

      void info(String message, Object... args)
      Logs an info message to the console, with 0 or more arguments.
      Parameters:
      message - the message to log to the console
      args - the arguments to fill the missing spots in the message
    • translatedInfo

      void translatedInfo(String message, Object... args)
    • debug

      void debug(String message, Object... args)
      Logs a debug message to the console, with 0 or more arguments.
      Parameters:
      message - the message to log to the console
      args - the arguments to fill the missing spots in the message
    • trace

      void trace(String message, Object... args)
      Logs a trace message to the console, with 0 or more arguments.
      Parameters:
      message - the message to log to the console
      args - the arguments to fill the missing spots in the message
    • isDebug

      boolean isDebug()
      Returns true if debugging is enabled