Interface Log

    • Field Summary

      Fields 
      Modifier and Type Field Description
      static short ERROR  
      static short FATAL  
      static short INFO  
      static short TRACE  
      static short WARN  
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void error​(java.lang.Object o)
      Write out a log message at the ERROR level with the stringification of o as the body of the message, also outputting t to the log.
      void error​(java.lang.Object o, java.lang.Throwable t)
      Write out a log message at the ERROR level with the stringification of o as the body of the message, also outputting t to the log.
      void fatal​(java.lang.Object o)
      Write out a log message at the FATAL level with the stringification of o as the body of the message, also outputting t to the log.
      void fatal​(java.lang.Object o, java.lang.Throwable t)
      Write out a log message at the FATAL level with the stringification of o as the body of the message, also outputting t to the log.
      void info​(java.lang.Object o)
      Write out a log message at the INFO level with the stringification of o as the body of the message, also outputting t to the log.
      void info​(java.lang.Object o, java.lang.Throwable t)
      Write out a log message at the INFO level with the stringification of o as the body of the message, also outputting t to the log.
      boolean isErrorEnabled()
      Returns if the ERROR log level is enabled.
      boolean isFatalEnabled()
      Returns if the FATAL log level is enabled.
      boolean isInfoEnabled()
      Returns if the INFO log level is enabled.
      boolean isTraceEnabled()
      Returns if the TRACE log level is enabled.
      boolean isWarnEnabled()
      Returns if the WARN log level is enabled.
      void trace​(java.lang.Object o)
      Write out a log message at the TRACE level with the stringification of o as the body of the message.
      void trace​(java.lang.Object o, java.lang.Throwable t)
      Write out a log message at the TRACE level with the stringification of o as the body of the message, also outputting t to the log.
      void warn​(java.lang.Object o)
      Write out a log message at the WARN level with the stringification of o as the body of the message, also outputting t to the log.
      void warn​(java.lang.Object o, java.lang.Throwable t)
      Write out a log message at the WARN level with the stringification of o as the body of the message, also outputting t to the log.
    • Method Detail

      • isTraceEnabled

        boolean isTraceEnabled()
        Returns if the TRACE log level is enabled.
      • isInfoEnabled

        boolean isInfoEnabled()
        Returns if the INFO log level is enabled.
      • isWarnEnabled

        boolean isWarnEnabled()
        Returns if the WARN log level is enabled.
      • isErrorEnabled

        boolean isErrorEnabled()
        Returns if the ERROR log level is enabled.
      • isFatalEnabled

        boolean isFatalEnabled()
        Returns if the FATAL log level is enabled.
      • trace

        void trace​(java.lang.Object o)
        Write out a log message at the TRACE level with the stringification of o as the body of the message.
      • trace

        void trace​(java.lang.Object o,
                   java.lang.Throwable t)
        Write out a log message at the TRACE level with the stringification of o as the body of the message, also outputting t to the log.
      • info

        void info​(java.lang.Object o)
        Write out a log message at the INFO level with the stringification of o as the body of the message, also outputting t to the log.
      • info

        void info​(java.lang.Object o,
                  java.lang.Throwable t)
        Write out a log message at the INFO level with the stringification of o as the body of the message, also outputting t to the log.
      • warn

        void warn​(java.lang.Object o)
        Write out a log message at the WARN level with the stringification of o as the body of the message, also outputting t to the log.
      • warn

        void warn​(java.lang.Object o,
                  java.lang.Throwable t)
        Write out a log message at the WARN level with the stringification of o as the body of the message, also outputting t to the log.
      • error

        void error​(java.lang.Object o)
        Write out a log message at the ERROR level with the stringification of o as the body of the message, also outputting t to the log.
      • error

        void error​(java.lang.Object o,
                   java.lang.Throwable t)
        Write out a log message at the ERROR level with the stringification of o as the body of the message, also outputting t to the log.
      • fatal

        void fatal​(java.lang.Object o)
        Write out a log message at the FATAL level with the stringification of o as the body of the message, also outputting t to the log.
      • fatal

        void fatal​(java.lang.Object o,
                   java.lang.Throwable t)
        Write out a log message at the FATAL level with the stringification of o as the body of the message, also outputting t to the log.