Class JulLogger


  • public class JulLogger
    extends RestFBLogger
    Logger implementation based on java.util.logging. The JUL configuration should be provided by a external application. The mapping is defined like:
    • trace maps to java.util.logging.Level.FINER
    • debug maps to java.util.logging.Level.FINE
    • info maps to java.util.logging.Level.INFO
    • warn maps to java.util.logging.Level.WARNING
    • error maps to java.util.logging.Level.SEVERE
    • fatal maps to java.util.logging.Level.SEVERE
    • Method Detail

      • trace

        public void trace​(String msg,
                          Object... args)
        Description copied from class: RestFBLogger
        Log a message at the TRACE level according to the specified format and arguments.
        Specified by:
        trace in class RestFBLogger
        Parameters:
        msg - the log message
        args - optional arguments, the last argument may be an exception
      • debug

        public void debug​(String msg,
                          Object... args)
        Description copied from class: RestFBLogger
        Log a message at the DEBUG level according to the specified format and arguments.
        Specified by:
        debug in class RestFBLogger
        Parameters:
        msg - the log message
        args - optional arguments, the last argument may be an exception
      • info

        public void info​(String msg,
                         Object... args)
        Description copied from class: RestFBLogger
        Log a message at the INFO level according to the specified format and arguments.
        Specified by:
        info in class RestFBLogger
        Parameters:
        msg - the log message
        args - optional arguments, the last argument may be an exception
      • warn

        public void warn​(String msg,
                         Object... args)
        Description copied from class: RestFBLogger
        Log a message at the WARN level according to the specified format and arguments.
        Specified by:
        warn in class RestFBLogger
        Parameters:
        msg - the log message
        args - optional arguments, the last argument may be an exception
      • error

        public void error​(String msg,
                          Object... args)
        Description copied from class: RestFBLogger
        Log a message at the ERROR level according to the specified format and arguments.
        Specified by:
        error in class RestFBLogger
        Parameters:
        msg - the log message
        args - optional arguments, the last argument may be an exception
      • fatal

        public void fatal​(String msg,
                          Object... args)
        Description copied from class: RestFBLogger
        Log a message at the FATAL level according to the specified format and arguments.
        Specified by:
        fatal in class RestFBLogger
        Parameters:
        msg - the log message
        args - optional arguments, the last argument may be an exception