Class AbstractLogger

    • Field Detail

      • FLOW_MARKER

        public static final Marker FLOW_MARKER
        Marker for flow tracing.
      • ENTRY_MARKER

        public static final Marker ENTRY_MARKER
        Marker for method entry tracing.
      • EXIT_MARKER

        public static final Marker EXIT_MARKER
        Marker for method exit tracing.
      • EXCEPTION_MARKER

        public static final Marker EXCEPTION_MARKER
        Marker for exception tracing.
      • THROWING_MARKER

        public static final Marker THROWING_MARKER
        Marker for throwing exceptions.
      • CATCHING_MARKER

        public static final Marker CATCHING_MARKER
        Marker for catching exceptions.
      • DEFAULT_MESSAGE_FACTORY_CLASS

        public static final Class<? extends MessageFactory> DEFAULT_MESSAGE_FACTORY_CLASS
        The default MessageFactory class.
      • DEFAULT_FLOW_MESSAGE_FACTORY_CLASS

        public static final Class<? extends FlowMessageFactory> DEFAULT_FLOW_MESSAGE_FACTORY_CLASS
        The default FlowMessageFactory class.
      • name

        protected final String name
    • Constructor Detail

      • AbstractLogger

        public AbstractLogger()
        Creates a new logger named after this class (or subclass).
      • AbstractLogger

        public AbstractLogger​(String name)
        Creates a new named logger.
        Parameters:
        name - the logger name
      • AbstractLogger

        public AbstractLogger​(String name,
                              MessageFactory messageFactory)
        Creates a new named logger with a particular MessageFactory.
        Parameters:
        name - the logger name
        messageFactory - the message factory, if null then use the default message factory.
    • Method Detail

      • checkMessageFactory

        public static void checkMessageFactory​(ExtendedLogger logger,
                                               MessageFactory messageFactory)
        Checks that the message factory a logger was created with is the same as the given messageFactory. If they are different log a warning to the StatusLogger. A null MessageFactory translates to the default MessageFactory DEFAULT_MESSAGE_FACTORY_CLASS.
        Parameters:
        logger - The logger to check
        messageFactory - The message factory to check.
      • catching

        public void catching​(Level level,
                             Throwable throwable)
        Description copied from interface: Logger
        Logs a Throwable that has been caught to a specific logging level.
        Specified by:
        catching in interface Logger
        Parameters:
        level - The logging Level.
        throwable - the Throwable.
      • catching

        protected void catching​(String fqcn,
                                Level level,
                                Throwable throwable)
        Logs a Throwable that has been caught with location information.
        Parameters:
        fqcn - The fully qualified class name of the caller.
        level - The logging level.
        throwable - The Throwable.
      • catching

        public void catching​(Throwable throwable)
        Description copied from interface: Logger
        Logs a Throwable that has been caught at the ERROR level. Normally, one may wish to provide additional information with an exception while logging it; in these cases, one would not use this method. In other cases where simply logging the fact that an exception was swallowed somewhere (e.g., at the top of the stack trace in a main() method), this method is ideal for it.
        Specified by:
        catching in interface Logger
        Parameters:
        throwable - the Throwable.
      • debug

        public void debug​(Marker marker,
                          CharSequence message)
        Description copied from interface: Logger
        Logs a message CharSequence with the DEBUG level.
        Specified by:
        debug in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message CharSequence to log.
      • debug

        public void debug​(Marker marker,
                          CharSequence message,
                          Throwable throwable)
        Description copied from interface: Logger
        Logs a message CharSequence at the DEBUG level including the stack trace of the Throwable throwable passed as parameter.
        Specified by:
        debug in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message CharSequence to log.
        throwable - the Throwable to log, including its stack trace.
      • debug

        public void debug​(Marker marker,
                          Message message)
        Description copied from interface: Logger
        Logs a message with the specific Marker at the DEBUG level.
        Specified by:
        debug in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message string to be logged
      • debug

        public void debug​(Marker marker,
                          Message message,
                          Throwable throwable)
        Description copied from interface: Logger
        Logs a message with the specific Marker at the DEBUG level.
        Specified by:
        debug in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message string to be logged
        throwable - A Throwable or null.
      • debug

        public void debug​(Marker marker,
                          Object message)
        Description copied from interface: Logger
        Logs a message object with the DEBUG level.
        Specified by:
        debug in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message object to log.
      • debug

        public void debug​(Marker marker,
                          Object message,
                          Throwable throwable)
        Description copied from interface: Logger
        Logs a message at the DEBUG level including the stack trace of the Throwable throwable passed as parameter.
        Specified by:
        debug in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message to log.
        throwable - the Throwable to log, including its stack trace.
      • debug

        public void debug​(Marker marker,
                          String message)
        Description copied from interface: Logger
        Logs a message object with the DEBUG level.
        Specified by:
        debug in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message object to log.
      • debug

        public void debug​(Marker marker,
                          String message,
                          Object... params)
        Description copied from interface: Logger
        Logs a message with parameters at the DEBUG level.
        Specified by:
        debug in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message to log; the format depends on the message factory.
        params - parameters to the message.
        See Also:
        Logger.getMessageFactory()
      • debug

        public void debug​(Marker marker,
                          String message,
                          Throwable throwable)
        Description copied from interface: Logger
        Logs a message at the DEBUG level including the stack trace of the Throwable throwable passed as parameter.
        Specified by:
        debug in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message to log.
        throwable - the Throwable to log, including its stack trace.
      • debug

        public void debug​(Message message)
        Description copied from interface: Logger
        Logs a message with the specific Marker at the DEBUG level.
        Specified by:
        debug in interface Logger
        Parameters:
        message - the message string to be logged
      • debug

        public void debug​(Message message,
                          Throwable throwable)
        Description copied from interface: Logger
        Logs a message with the specific Marker at the DEBUG level.
        Specified by:
        debug in interface Logger
        Parameters:
        message - the message string to be logged
        throwable - A Throwable or null.
      • debug

        public void debug​(CharSequence message)
        Description copied from interface: Logger
        Logs a message CharSequence with the DEBUG level.
        Specified by:
        debug in interface Logger
        Parameters:
        message - the message object to log.
      • debug

        public void debug​(CharSequence message,
                          Throwable throwable)
        Description copied from interface: Logger
        Logs a CharSequence at the DEBUG level including the stack trace of the Throwable throwable passed as parameter.
        Specified by:
        debug in interface Logger
        Parameters:
        message - the message CharSequence to log.
        throwable - the Throwable to log, including its stack trace.
      • debug

        public void debug​(Object message)
        Description copied from interface: Logger
        Logs a message object with the DEBUG level.
        Specified by:
        debug in interface Logger
        Parameters:
        message - the message object to log.
      • debug

        public void debug​(Object message,
                          Throwable throwable)
        Description copied from interface: Logger
        Logs a message at the DEBUG level including the stack trace of the Throwable throwable passed as parameter.
        Specified by:
        debug in interface Logger
        Parameters:
        message - the message to log.
        throwable - the Throwable to log, including its stack trace.
      • debug

        public void debug​(String message)
        Description copied from interface: Logger
        Logs a message object with the DEBUG level.
        Specified by:
        debug in interface Logger
        Parameters:
        message - the message string to log.
      • debug

        public void debug​(String message,
                          Object... params)
        Description copied from interface: Logger
        Logs a message with parameters at the DEBUG level.
        Specified by:
        debug in interface Logger
        Parameters:
        message - the message to log; the format depends on the message factory.
        params - parameters to the message.
        See Also:
        Logger.getMessageFactory()
      • debug

        public void debug​(String message,
                          Throwable throwable)
        Description copied from interface: Logger
        Logs a message at the DEBUG level including the stack trace of the Throwable throwable passed as parameter.
        Specified by:
        debug in interface Logger
        Parameters:
        message - the message to log.
        throwable - the Throwable to log, including its stack trace.
      • debug

        public void debug​(Supplier<?> messageSupplier)
        Description copied from interface: Logger
        Logs a message which is only to be constructed if the logging level is the DEBUG level.
        Specified by:
        debug in interface Logger
        Parameters:
        messageSupplier - A function, which when called, produces the desired log message; the format depends on the message factory.
      • debug

        public void debug​(Supplier<?> messageSupplier,
                          Throwable throwable)
        Description copied from interface: Logger
        Logs a message (only to be constructed if the logging level is the DEBUG level) including the stack trace of the Throwable throwable passed as parameter.
        Specified by:
        debug in interface Logger
        Parameters:
        messageSupplier - A function, which when called, produces the desired log message; the format depends on the message factory.
        throwable - the Throwable to log, including its stack trace.
      • debug

        public void debug​(Marker marker,
                          Supplier<?> messageSupplier)
        Description copied from interface: Logger
        Logs a message which is only to be constructed if the logging level is the DEBUG level with the specified Marker.
        Specified by:
        debug in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        messageSupplier - A function, which when called, produces the desired log message; the format depends on the message factory.
      • debug

        public void debug​(Marker marker,
                          String message,
                          Supplier<?>... paramSuppliers)
        Description copied from interface: Logger
        Logs a message with parameters which are only to be constructed if the logging level is the DEBUG level.
        Specified by:
        debug in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message to log; the format depends on the message factory.
        paramSuppliers - An array of functions, which when called, produce the desired log message parameters.
      • debug

        public void debug​(Marker marker,
                          Supplier<?> messageSupplier,
                          Throwable throwable)
        Description copied from interface: Logger
        Logs a message (only to be constructed if the logging level is the DEBUG level) with the specified Marker and including the stack trace of the Throwable throwable passed as parameter.
        Specified by:
        debug in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        messageSupplier - A function, which when called, produces the desired log message; the format depends on the message factory.
        throwable - A Throwable or null.
      • debug

        public void debug​(String message,
                          Supplier<?>... paramSuppliers)
        Description copied from interface: Logger
        Logs a message with parameters which are only to be constructed if the logging level is the DEBUG level.
        Specified by:
        debug in interface Logger
        Parameters:
        message - the message to log; the format depends on the message factory.
        paramSuppliers - An array of functions, which when called, produce the desired log message parameters.
      • debug

        public void debug​(Marker marker,
                          MessageSupplier messageSupplier)
        Description copied from interface: Logger
        Logs a message which is only to be constructed if the logging level is the DEBUG level with the specified Marker. The MessageSupplier may or may not use the MessageFactory to construct the Message.
        Specified by:
        debug in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        messageSupplier - A function, which when called, produces the desired log message.
      • debug

        public void debug​(Marker marker,
                          MessageSupplier messageSupplier,
                          Throwable throwable)
        Description copied from interface: Logger
        Logs a message (only to be constructed if the logging level is the DEBUG level) with the specified Marker and including the stack trace of the Throwable throwable passed as parameter. The MessageSupplier may or may not use the MessageFactory to construct the Message.
        Specified by:
        debug in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        messageSupplier - A function, which when called, produces the desired log message.
        throwable - A Throwable or null.
      • debug

        public void debug​(MessageSupplier messageSupplier)
        Description copied from interface: Logger
        Logs a message which is only to be constructed if the logging level is the DEBUG level. The MessageSupplier may or may not use the MessageFactory to construct the Message.
        Specified by:
        debug in interface Logger
        Parameters:
        messageSupplier - A function, which when called, produces the desired log message.
      • debug

        public void debug​(MessageSupplier messageSupplier,
                          Throwable throwable)
        Description copied from interface: Logger
        Logs a message (only to be constructed if the logging level is the DEBUG level) including the stack trace of the Throwable throwable passed as parameter. The MessageSupplier may or may not use the MessageFactory to construct the Message.
        Specified by:
        debug in interface Logger
        Parameters:
        messageSupplier - A function, which when called, produces the desired log message.
        throwable - the Throwable to log, including its stack trace.
      • debug

        public void debug​(Marker marker,
                          String message,
                          Object p0)
        Description copied from interface: Logger
        Logs a message with parameters at debug level.
        Specified by:
        debug in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
      • debug

        public void debug​(Marker marker,
                          String message,
                          Object p0,
                          Object p1)
        Description copied from interface: Logger
        Logs a message with parameters at debug level.
        Specified by:
        debug in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
      • debug

        public void debug​(Marker marker,
                          String message,
                          Object p0,
                          Object p1,
                          Object p2)
        Description copied from interface: Logger
        Logs a message with parameters at debug level.
        Specified by:
        debug in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
      • debug

        public void debug​(Marker marker,
                          String message,
                          Object p0,
                          Object p1,
                          Object p2,
                          Object p3)
        Description copied from interface: Logger
        Logs a message with parameters at debug level.
        Specified by:
        debug in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
        p3 - parameter to the message.
      • debug

        public void debug​(Marker marker,
                          String message,
                          Object p0,
                          Object p1,
                          Object p2,
                          Object p3,
                          Object p4)
        Description copied from interface: Logger
        Logs a message with parameters at debug level.
        Specified by:
        debug in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
        p3 - parameter to the message.
        p4 - parameter to the message.
      • debug

        public void debug​(Marker marker,
                          String message,
                          Object p0,
                          Object p1,
                          Object p2,
                          Object p3,
                          Object p4,
                          Object p5)
        Description copied from interface: Logger
        Logs a message with parameters at debug level.
        Specified by:
        debug in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
        p3 - parameter to the message.
        p4 - parameter to the message.
        p5 - parameter to the message.
      • debug

        public void debug​(Marker marker,
                          String message,
                          Object p0,
                          Object p1,
                          Object p2,
                          Object p3,
                          Object p4,
                          Object p5,
                          Object p6)
        Description copied from interface: Logger
        Logs a message with parameters at debug level.
        Specified by:
        debug in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
        p3 - parameter to the message.
        p4 - parameter to the message.
        p5 - parameter to the message.
        p6 - parameter to the message.
      • debug

        public void debug​(Marker marker,
                          String message,
                          Object p0,
                          Object p1,
                          Object p2,
                          Object p3,
                          Object p4,
                          Object p5,
                          Object p6,
                          Object p7)
        Description copied from interface: Logger
        Logs a message with parameters at debug level.
        Specified by:
        debug in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
        p3 - parameter to the message.
        p4 - parameter to the message.
        p5 - parameter to the message.
        p6 - parameter to the message.
        p7 - parameter to the message.
      • debug

        public void debug​(Marker marker,
                          String message,
                          Object p0,
                          Object p1,
                          Object p2,
                          Object p3,
                          Object p4,
                          Object p5,
                          Object p6,
                          Object p7,
                          Object p8)
        Description copied from interface: Logger
        Logs a message with parameters at debug level.
        Specified by:
        debug in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
        p3 - parameter to the message.
        p4 - parameter to the message.
        p5 - parameter to the message.
        p6 - parameter to the message.
        p7 - parameter to the message.
        p8 - parameter to the message.
      • debug

        public void debug​(Marker marker,
                          String message,
                          Object p0,
                          Object p1,
                          Object p2,
                          Object p3,
                          Object p4,
                          Object p5,
                          Object p6,
                          Object p7,
                          Object p8,
                          Object p9)
        Description copied from interface: Logger
        Logs a message with parameters at debug level.
        Specified by:
        debug in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
        p3 - parameter to the message.
        p4 - parameter to the message.
        p5 - parameter to the message.
        p6 - parameter to the message.
        p7 - parameter to the message.
        p8 - parameter to the message.
        p9 - parameter to the message.
      • debug

        public void debug​(String message,
                          Object p0)
        Description copied from interface: Logger
        Logs a message with parameters at debug level.
        Specified by:
        debug in interface Logger
        Parameters:
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
      • debug

        public void debug​(String message,
                          Object p0,
                          Object p1)
        Description copied from interface: Logger
        Logs a message with parameters at debug level.
        Specified by:
        debug in interface Logger
        Parameters:
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
      • debug

        public void debug​(String message,
                          Object p0,
                          Object p1,
                          Object p2)
        Description copied from interface: Logger
        Logs a message with parameters at debug level.
        Specified by:
        debug in interface Logger
        Parameters:
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
      • debug

        public void debug​(String message,
                          Object p0,
                          Object p1,
                          Object p2,
                          Object p3)
        Description copied from interface: Logger
        Logs a message with parameters at debug level.
        Specified by:
        debug in interface Logger
        Parameters:
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
        p3 - parameter to the message.
      • debug

        public void debug​(String message,
                          Object p0,
                          Object p1,
                          Object p2,
                          Object p3,
                          Object p4)
        Description copied from interface: Logger
        Logs a message with parameters at debug level.
        Specified by:
        debug in interface Logger
        Parameters:
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
        p3 - parameter to the message.
        p4 - parameter to the message.
      • debug

        public void debug​(String message,
                          Object p0,
                          Object p1,
                          Object p2,
                          Object p3,
                          Object p4,
                          Object p5)
        Description copied from interface: Logger
        Logs a message with parameters at debug level.
        Specified by:
        debug in interface Logger
        Parameters:
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
        p3 - parameter to the message.
        p4 - parameter to the message.
        p5 - parameter to the message.
      • debug

        public void debug​(String message,
                          Object p0,
                          Object p1,
                          Object p2,
                          Object p3,
                          Object p4,
                          Object p5,
                          Object p6)
        Description copied from interface: Logger
        Logs a message with parameters at debug level.
        Specified by:
        debug in interface Logger
        Parameters:
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
        p3 - parameter to the message.
        p4 - parameter to the message.
        p5 - parameter to the message.
        p6 - parameter to the message.
      • debug

        public void debug​(String message,
                          Object p0,
                          Object p1,
                          Object p2,
                          Object p3,
                          Object p4,
                          Object p5,
                          Object p6,
                          Object p7)
        Description copied from interface: Logger
        Logs a message with parameters at debug level.
        Specified by:
        debug in interface Logger
        Parameters:
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
        p3 - parameter to the message.
        p4 - parameter to the message.
        p5 - parameter to the message.
        p6 - parameter to the message.
        p7 - parameter to the message.
      • debug

        public void debug​(String message,
                          Object p0,
                          Object p1,
                          Object p2,
                          Object p3,
                          Object p4,
                          Object p5,
                          Object p6,
                          Object p7,
                          Object p8)
        Description copied from interface: Logger
        Logs a message with parameters at debug level.
        Specified by:
        debug in interface Logger
        Parameters:
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
        p3 - parameter to the message.
        p4 - parameter to the message.
        p5 - parameter to the message.
        p6 - parameter to the message.
        p7 - parameter to the message.
        p8 - parameter to the message.
      • debug

        public void debug​(String message,
                          Object p0,
                          Object p1,
                          Object p2,
                          Object p3,
                          Object p4,
                          Object p5,
                          Object p6,
                          Object p7,
                          Object p8,
                          Object p9)
        Description copied from interface: Logger
        Logs a message with parameters at debug level.
        Specified by:
        debug in interface Logger
        Parameters:
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
        p3 - parameter to the message.
        p4 - parameter to the message.
        p5 - parameter to the message.
        p6 - parameter to the message.
        p7 - parameter to the message.
        p8 - parameter to the message.
        p9 - parameter to the message.
      • enter

        protected EntryMessage enter​(String fqcn,
                                     String format,
                                     Supplier<?>... paramSuppliers)
        Logs entry to a method with location information.
        Parameters:
        fqcn - The fully qualified class name of the caller.
        format - Format String for the parameters.
        paramSuppliers - The Suppliers of the parameters.
      • enter

        @Deprecated
        protected EntryMessage enter​(String fqcn,
                                     String format,
                                     MessageSupplier... paramSuppliers)
        Deprecated.
        Logs entry to a method with location information.
        Parameters:
        fqcn - The fully qualified class name of the caller.
        format - The format String for the parameters.
        paramSuppliers - The parameters to the method.
      • enter

        protected EntryMessage enter​(String fqcn,
                                     String format,
                                     Object... params)
        Logs entry to a method with location information.
        Parameters:
        fqcn - The fully qualified class name of the caller.
        format - The format String for the parameters.
        params - The parameters to the method.
      • enter

        @Deprecated
        protected EntryMessage enter​(String fqcn,
                                     MessageSupplier messageSupplier)
        Deprecated.
        Logs entry to a method with location information.
        Parameters:
        fqcn - The fully qualified class name of the caller.
        messageSupplier - The Supplier of the Message.
      • enter

        protected EntryMessage enter​(String fqcn,
                                     Message message)
        Logs entry to a method with location information.
        Parameters:
        fqcn - The fully qualified class name of the caller.
        message - the Message.
        Since:
        2.6
      • entry

        @Deprecated
        public void entry()
        Deprecated.
        Description copied from interface: Logger
        Logs entry to a method. Used when the method in question has no parameters or when the parameters should not be logged.
        Specified by:
        entry in interface Logger
      • entry

        public void entry​(Object... params)
        Description copied from interface: Logger
        Logs entry to a method along with its parameters (consider using one of the traceEntry(...) methods instead.)

        For example:

         public void doSomething(String foo, int bar) {
             LOGGER.entry(foo, bar);
             // do something
         }
         

        The use of methods such as this are more effective when combined with aspect-oriented programming or other bytecode manipulation tools. It can be rather tedious (and messy) to use this type of method manually.

        Specified by:
        entry in interface Logger
        Parameters:
        params - The parameters to the method.
      • entry

        protected void entry​(String fqcn,
                             Object... params)
        Logs entry to a method with location information.
        Parameters:
        fqcn - The fully qualified class name of the caller.
        params - The parameters to the method.
      • error

        public void error​(Marker marker,
                          Message message)
        Description copied from interface: Logger
        Logs a message with the specific Marker at the ERROR level.
        Specified by:
        error in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message string to be logged
      • error

        public void error​(Marker marker,
                          Message message,
                          Throwable throwable)
        Description copied from interface: Logger
        Logs a message with the specific Marker at the ERROR level.
        Specified by:
        error in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message string to be logged
        throwable - A Throwable or null.
      • error

        public void error​(Marker marker,
                          CharSequence message)
        Description copied from interface: Logger
        Logs a message CharSequence with the ERROR level.
        Specified by:
        error in interface Logger
        Parameters:
        marker - the marker data specific to this log statement.
        message - the message CharSequence to log.
      • error

        public void error​(Marker marker,
                          CharSequence message,
                          Throwable throwable)
        Description copied from interface: Logger
        Logs a CharSequence at the ERROR level including the stack trace of the Throwable throwable passed as parameter.
        Specified by:
        error in interface Logger
        Parameters:
        marker - the marker data specific to this log statement.
        message - the message CharSequence to log.
        throwable - the Throwable to log, including its stack trace.
      • error

        public void error​(Marker marker,
                          Object message)
        Description copied from interface: Logger
        Logs a message object with the ERROR level.
        Specified by:
        error in interface Logger
        Parameters:
        marker - the marker data specific to this log statement.
        message - the message object to log.
      • error

        public void error​(Marker marker,
                          Object message,
                          Throwable throwable)
        Description copied from interface: Logger
        Logs a message at the ERROR level including the stack trace of the Throwable throwable passed as parameter.
        Specified by:
        error in interface Logger
        Parameters:
        marker - the marker data specific to this log statement.
        message - the message object to log.
        throwable - the Throwable to log, including its stack trace.
      • error

        public void error​(Marker marker,
                          String message)
        Description copied from interface: Logger
        Logs a message object with the ERROR level.
        Specified by:
        error in interface Logger
        Parameters:
        marker - the marker data specific to this log statement.
        message - the message object to log.
      • error

        public void error​(Marker marker,
                          String message,
                          Object... params)
        Description copied from interface: Logger
        Logs a message with parameters at the ERROR level.
        Specified by:
        error in interface Logger
        Parameters:
        marker - the marker data specific to this log statement.
        message - the message to log; the format depends on the message factory.
        params - parameters to the message.
        See Also:
        Logger.getMessageFactory()
      • error

        public void error​(Marker marker,
                          String message,
                          Throwable throwable)
        Description copied from interface: Logger
        Logs a message at the ERROR level including the stack trace of the Throwable throwable passed as parameter.
        Specified by:
        error in interface Logger
        Parameters:
        marker - the marker data specific to this log statement.
        message - the message object to log.
        throwable - the Throwable to log, including its stack trace.
      • error

        public void error​(Message message)
        Description copied from interface: Logger
        Logs a message with the specific Marker at the ERROR level.
        Specified by:
        error in interface Logger
        Parameters:
        message - the message string to be logged
      • error

        public void error​(Message message,
                          Throwable throwable)
        Description copied from interface: Logger
        Logs a message with the specific Marker at the ERROR level.
        Specified by:
        error in interface Logger
        Parameters:
        message - the message string to be logged
        throwable - A Throwable or null.
      • error

        public void error​(CharSequence message)
        Description copied from interface: Logger
        Logs a message CharSequence with the ERROR level.
        Specified by:
        error in interface Logger
        Parameters:
        message - the message CharSequence to log.
      • error

        public void error​(CharSequence message,
                          Throwable throwable)
        Description copied from interface: Logger
        Logs a CharSequence at the ERROR level including the stack trace of the Throwable throwable passed as parameter.
        Specified by:
        error in interface Logger
        Parameters:
        message - the message CharSequence to log.
        throwable - the Throwable to log, including its stack trace.
      • error

        public void error​(Object message)
        Description copied from interface: Logger
        Logs a message object with the ERROR level.
        Specified by:
        error in interface Logger
        Parameters:
        message - the message object to log.
      • error

        public void error​(Object message,
                          Throwable throwable)
        Description copied from interface: Logger
        Logs a message at the ERROR level including the stack trace of the Throwable throwable passed as parameter.
        Specified by:
        error in interface Logger
        Parameters:
        message - the message object to log.
        throwable - the Throwable to log, including its stack trace.
      • error

        public void error​(String message)
        Description copied from interface: Logger
        Logs a message object with the ERROR level.
        Specified by:
        error in interface Logger
        Parameters:
        message - the message string to log.
      • error

        public void error​(String message,
                          Object... params)
        Description copied from interface: Logger
        Logs a message with parameters at the ERROR level.
        Specified by:
        error in interface Logger
        Parameters:
        message - the message to log; the format depends on the message factory.
        params - parameters to the message.
        See Also:
        Logger.getMessageFactory()
      • error

        public void error​(String message,
                          Throwable throwable)
        Description copied from interface: Logger
        Logs a message at the ERROR level including the stack trace of the Throwable throwable passed as parameter.
        Specified by:
        error in interface Logger
        Parameters:
        message - the message object to log.
        throwable - the Throwable to log, including its stack trace.
      • error

        public void error​(Supplier<?> messageSupplier)
        Description copied from interface: Logger
        Logs a message which is only to be constructed if the logging level is the ERROR level.
        Specified by:
        error in interface Logger
        Parameters:
        messageSupplier - A function, which when called, produces the desired log message; the format depends on the message factory.
      • error

        public void error​(Supplier<?> messageSupplier,
                          Throwable throwable)
        Description copied from interface: Logger
        Logs a message (only to be constructed if the logging level is the ERROR level) including the stack trace of the Throwable throwable passed as parameter.
        Specified by:
        error in interface Logger
        Parameters:
        messageSupplier - A function, which when called, produces the desired log message; the format depends on the message factory.
        throwable - the Throwable to log, including its stack trace.
      • error

        public void error​(Marker marker,
                          Supplier<?> messageSupplier)
        Description copied from interface: Logger
        Logs a message which is only to be constructed if the logging level is the ERROR level with the specified Marker.
        Specified by:
        error in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        messageSupplier - A function, which when called, produces the desired log message; the format depends on the message factory.
      • error

        public void error​(Marker marker,
                          String message,
                          Supplier<?>... paramSuppliers)
        Description copied from interface: Logger
        Logs a message with parameters which are only to be constructed if the logging level is the ERROR level.
        Specified by:
        error in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message to log; the format depends on the message factory.
        paramSuppliers - An array of functions, which when called, produce the desired log message parameters.
      • error

        public void error​(Marker marker,
                          Supplier<?> messageSupplier,
                          Throwable throwable)
        Description copied from interface: Logger
        Logs a message (only to be constructed if the logging level is the ERROR level) with the specified Marker and including the stack trace of the Throwable throwable passed as parameter.
        Specified by:
        error in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        messageSupplier - A function, which when called, produces the desired log message; the format depends on the message factory.
        throwable - A Throwable or null.
      • error

        public void error​(String message,
                          Supplier<?>... paramSuppliers)
        Description copied from interface: Logger
        Logs a message with parameters which are only to be constructed if the logging level is the ERROR level.
        Specified by:
        error in interface Logger
        Parameters:
        message - the message to log; the format depends on the message factory.
        paramSuppliers - An array of functions, which when called, produce the desired log message parameters.
      • error

        public void error​(Marker marker,
                          MessageSupplier messageSupplier)
        Description copied from interface: Logger
        Logs a message which is only to be constructed if the logging level is the ERROR level with the specified Marker. The MessageSupplier may or may not use the MessageFactory to construct the Message.
        Specified by:
        error in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        messageSupplier - A function, which when called, produces the desired log message.
      • error

        public void error​(Marker marker,
                          MessageSupplier messageSupplier,
                          Throwable throwable)
        Description copied from interface: Logger
        Logs a message (only to be constructed if the logging level is the ERROR level) with the specified Marker and including the stack trace of the Throwable throwable passed as parameter. The MessageSupplier may or may not use the MessageFactory to construct the Message.
        Specified by:
        error in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        messageSupplier - A function, which when called, produces the desired log message.
        throwable - A Throwable or null.
      • error

        public void error​(MessageSupplier messageSupplier)
        Description copied from interface: Logger
        Logs a message which is only to be constructed if the logging level is the ERROR level. The MessageSupplier may or may not use the MessageFactory to construct the Message.
        Specified by:
        error in interface Logger
        Parameters:
        messageSupplier - A function, which when called, produces the desired log message.
      • error

        public void error​(MessageSupplier messageSupplier,
                          Throwable throwable)
        Description copied from interface: Logger
        Logs a message (only to be constructed if the logging level is the ERROR level) including the stack trace of the Throwable throwable passed as parameter. The MessageSupplier may or may not use the MessageFactory to construct the Message.
        Specified by:
        error in interface Logger
        Parameters:
        messageSupplier - A function, which when called, produces the desired log message.
        throwable - the Throwable to log, including its stack trace.
      • error

        public void error​(Marker marker,
                          String message,
                          Object p0)
        Description copied from interface: Logger
        Logs a message with parameters at error level.
        Specified by:
        error in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
      • error

        public void error​(Marker marker,
                          String message,
                          Object p0,
                          Object p1)
        Description copied from interface: Logger
        Logs a message with parameters at error level.
        Specified by:
        error in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
      • error

        public void error​(Marker marker,
                          String message,
                          Object p0,
                          Object p1,
                          Object p2)
        Description copied from interface: Logger
        Logs a message with parameters at error level.
        Specified by:
        error in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
      • error

        public void error​(Marker marker,
                          String message,
                          Object p0,
                          Object p1,
                          Object p2,
                          Object p3)
        Description copied from interface: Logger
        Logs a message with parameters at error level.
        Specified by:
        error in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
        p3 - parameter to the message.
      • error

        public void error​(Marker marker,
                          String message,
                          Object p0,
                          Object p1,
                          Object p2,
                          Object p3,
                          Object p4)
        Description copied from interface: Logger
        Logs a message with parameters at error level.
        Specified by:
        error in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
        p3 - parameter to the message.
        p4 - parameter to the message.
      • error

        public void error​(Marker marker,
                          String message,
                          Object p0,
                          Object p1,
                          Object p2,
                          Object p3,
                          Object p4,
                          Object p5)
        Description copied from interface: Logger
        Logs a message with parameters at error level.
        Specified by:
        error in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
        p3 - parameter to the message.
        p4 - parameter to the message.
        p5 - parameter to the message.
      • error

        public void error​(Marker marker,
                          String message,
                          Object p0,
                          Object p1,
                          Object p2,
                          Object p3,
                          Object p4,
                          Object p5,
                          Object p6)
        Description copied from interface: Logger
        Logs a message with parameters at error level.
        Specified by:
        error in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
        p3 - parameter to the message.
        p4 - parameter to the message.
        p5 - parameter to the message.
        p6 - parameter to the message.
      • error

        public void error​(Marker marker,
                          String message,
                          Object p0,
                          Object p1,
                          Object p2,
                          Object p3,
                          Object p4,
                          Object p5,
                          Object p6,
                          Object p7)
        Description copied from interface: Logger
        Logs a message with parameters at error level.
        Specified by:
        error in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
        p3 - parameter to the message.
        p4 - parameter to the message.
        p5 - parameter to the message.
        p6 - parameter to the message.
        p7 - parameter to the message.
      • error

        public void error​(Marker marker,
                          String message,
                          Object p0,
                          Object p1,
                          Object p2,
                          Object p3,
                          Object p4,
                          Object p5,
                          Object p6,
                          Object p7,
                          Object p8)
        Description copied from interface: Logger
        Logs a message with parameters at error level.
        Specified by:
        error in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
        p3 - parameter to the message.
        p4 - parameter to the message.
        p5 - parameter to the message.
        p6 - parameter to the message.
        p7 - parameter to the message.
        p8 - parameter to the message.
      • error

        public void error​(Marker marker,
                          String message,
                          Object p0,
                          Object p1,
                          Object p2,
                          Object p3,
                          Object p4,
                          Object p5,
                          Object p6,
                          Object p7,
                          Object p8,
                          Object p9)
        Description copied from interface: Logger
        Logs a message with parameters at error level.
        Specified by:
        error in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
        p3 - parameter to the message.
        p4 - parameter to the message.
        p5 - parameter to the message.
        p6 - parameter to the message.
        p7 - parameter to the message.
        p8 - parameter to the message.
        p9 - parameter to the message.
      • error

        public void error​(String message,
                          Object p0)
        Description copied from interface: Logger
        Logs a message with parameters at error level.
        Specified by:
        error in interface Logger
        Parameters:
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
      • error

        public void error​(String message,
                          Object p0,
                          Object p1)
        Description copied from interface: Logger
        Logs a message with parameters at error level.
        Specified by:
        error in interface Logger
        Parameters:
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
      • error

        public void error​(String message,
                          Object p0,
                          Object p1,
                          Object p2)
        Description copied from interface: Logger
        Logs a message with parameters at error level.
        Specified by:
        error in interface Logger
        Parameters:
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
      • error

        public void error​(String message,
                          Object p0,
                          Object p1,
                          Object p2,
                          Object p3)
        Description copied from interface: Logger
        Logs a message with parameters at error level.
        Specified by:
        error in interface Logger
        Parameters:
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
        p3 - parameter to the message.
      • error

        public void error​(String message,
                          Object p0,
                          Object p1,
                          Object p2,
                          Object p3,
                          Object p4)
        Description copied from interface: Logger
        Logs a message with parameters at error level.
        Specified by:
        error in interface Logger
        Parameters:
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
        p3 - parameter to the message.
        p4 - parameter to the message.
      • error

        public void error​(String message,
                          Object p0,
                          Object p1,
                          Object p2,
                          Object p3,
                          Object p4,
                          Object p5)
        Description copied from interface: Logger
        Logs a message with parameters at error level.
        Specified by:
        error in interface Logger
        Parameters:
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
        p3 - parameter to the message.
        p4 - parameter to the message.
        p5 - parameter to the message.
      • error

        public void error​(String message,
                          Object p0,
                          Object p1,
                          Object p2,
                          Object p3,
                          Object p4,
                          Object p5,
                          Object p6)
        Description copied from interface: Logger
        Logs a message with parameters at error level.
        Specified by:
        error in interface Logger
        Parameters:
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
        p3 - parameter to the message.
        p4 - parameter to the message.
        p5 - parameter to the message.
        p6 - parameter to the message.
      • error

        public void error​(String message,
                          Object p0,
                          Object p1,
                          Object p2,
                          Object p3,
                          Object p4,
                          Object p5,
                          Object p6,
                          Object p7)
        Description copied from interface: Logger
        Logs a message with parameters at error level.
        Specified by:
        error in interface Logger
        Parameters:
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
        p3 - parameter to the message.
        p4 - parameter to the message.
        p5 - parameter to the message.
        p6 - parameter to the message.
        p7 - parameter to the message.
      • error

        public void error​(String message,
                          Object p0,
                          Object p1,
                          Object p2,
                          Object p3,
                          Object p4,
                          Object p5,
                          Object p6,
                          Object p7,
                          Object p8)
        Description copied from interface: Logger
        Logs a message with parameters at error level.
        Specified by:
        error in interface Logger
        Parameters:
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
        p3 - parameter to the message.
        p4 - parameter to the message.
        p5 - parameter to the message.
        p6 - parameter to the message.
        p7 - parameter to the message.
        p8 - parameter to the message.
      • error

        public void error​(String message,
                          Object p0,
                          Object p1,
                          Object p2,
                          Object p3,
                          Object p4,
                          Object p5,
                          Object p6,
                          Object p7,
                          Object p8,
                          Object p9)
        Description copied from interface: Logger
        Logs a message with parameters at error level.
        Specified by:
        error in interface Logger
        Parameters:
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
        p3 - parameter to the message.
        p4 - parameter to the message.
        p5 - parameter to the message.
        p6 - parameter to the message.
        p7 - parameter to the message.
        p8 - parameter to the message.
        p9 - parameter to the message.
      • exit

        @Deprecated
        public void exit()
        Deprecated.
        Description copied from interface: Logger
        Logs exit from a method. Used for methods that do not return anything.
        Specified by:
        exit in interface Logger
      • exit

        @Deprecated
        public <R> R exit​(R result)
        Deprecated.
        Description copied from interface: Logger
        Logs exiting from a method with the result. This may be coded as:
         return LOGGER.exit(myResult);
         
        Specified by:
        exit in interface Logger
        Type Parameters:
        R - The type of the parameter and object being returned.
        Parameters:
        result - The result being returned from the method call.
        Returns:
        the result.
      • exit

        protected <R> R exit​(String fqcn,
                             R result)
        Logs exiting from a method with the result and location information.
        Type Parameters:
        R - The type of the parameter and object being returned.
        Parameters:
        fqcn - The fully qualified class name of the caller.
        result - The result being returned from the method call.
        Returns:
        the return value passed to this method.
      • exit

        protected <R> R exit​(String fqcn,
                             String format,
                             R result)
        Logs exiting from a method with the result and location information.
        Type Parameters:
        R - The type of the parameter and object being returned.
        Parameters:
        fqcn - The fully qualified class name of the caller.
        result - The result being returned from the method call.
        Returns:
        the return value passed to this method.
      • fatal

        public void fatal​(Marker marker,
                          Message message)
        Description copied from interface: Logger
        Logs a message with the specific Marker at the FATAL level.
        Specified by:
        fatal in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message string to be logged
      • fatal

        public void fatal​(Marker marker,
                          Message message,
                          Throwable throwable)
        Description copied from interface: Logger
        Logs a message with the specific Marker at the FATAL level.
        Specified by:
        fatal in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message string to be logged
        throwable - A Throwable or null.
      • fatal

        public void fatal​(Marker marker,
                          CharSequence message)
        Description copied from interface: Logger
        Logs a message CharSequence with the FATAL level.
        Specified by:
        fatal in interface Logger
        Parameters:
        marker - The marker data specific to this log statement.
        message - the message CharSequence to log.
      • fatal

        public void fatal​(Marker marker,
                          CharSequence message,
                          Throwable throwable)
        Description copied from interface: Logger
        Logs a CharSequence at the FATAL level including the stack trace of the Throwable throwable passed as parameter.
        Specified by:
        fatal in interface Logger
        Parameters:
        marker - The marker data specific to this log statement.
        message - the message CharSequence to log.
        throwable - the Throwable to log, including its stack trace.
      • fatal

        public void fatal​(Marker marker,
                          Object message)
        Description copied from interface: Logger
        Logs a message object with the FATAL level.
        Specified by:
        fatal in interface Logger
        Parameters:
        marker - The marker data specific to this log statement.
        message - the message object to log.
      • fatal

        public void fatal​(Marker marker,
                          Object message,
                          Throwable throwable)
        Description copied from interface: Logger
        Logs a message at the FATAL level including the stack trace of the Throwable throwable passed as parameter.
        Specified by:
        fatal in interface Logger
        Parameters:
        marker - The marker data specific to this log statement.
        message - the message object to log.
        throwable - the Throwable to log, including its stack trace.
      • fatal

        public void fatal​(Marker marker,
                          String message)
        Description copied from interface: Logger
        Logs a message object with the FATAL level.
        Specified by:
        fatal in interface Logger
        Parameters:
        marker - The marker data specific to this log statement.
        message - the message object to log.
      • fatal

        public void fatal​(Marker marker,
                          String message,
                          Object... params)
        Description copied from interface: Logger
        Logs a message with parameters at the FATAL level.
        Specified by:
        fatal in interface Logger
        Parameters:
        marker - The marker data specific to this log statement.
        message - the message to log; the format depends on the message factory.
        params - parameters to the message.
        See Also:
        Logger.getMessageFactory()
      • fatal

        public void fatal​(Marker marker,
                          String message,
                          Throwable throwable)
        Description copied from interface: Logger
        Logs a message at the FATAL level including the stack trace of the Throwable throwable passed as parameter.
        Specified by:
        fatal in interface Logger
        Parameters:
        marker - The marker data specific to this log statement.
        message - the message object to log.
        throwable - the Throwable to log, including its stack trace.
      • fatal

        public void fatal​(Message message)
        Description copied from interface: Logger
        Logs a message with the specific Marker at the FATAL level.
        Specified by:
        fatal in interface Logger
        Parameters:
        message - the message string to be logged
      • fatal

        public void fatal​(Message message,
                          Throwable throwable)
        Description copied from interface: Logger
        Logs a message with the specific Marker at the FATAL level.
        Specified by:
        fatal in interface Logger
        Parameters:
        message - the message string to be logged
        throwable - A Throwable or null.
      • fatal

        public void fatal​(CharSequence message)
        Description copied from interface: Logger
        Logs a message CharSequence with the FATAL level.
        Specified by:
        fatal in interface Logger
        Parameters:
        message - the message CharSequence to log.
      • fatal

        public void fatal​(CharSequence message,
                          Throwable throwable)
        Description copied from interface: Logger
        Logs a CharSequence at the FATAL level including the stack trace of the Throwable throwable passed as parameter.
        Specified by:
        fatal in interface Logger
        Parameters:
        message - the message CharSequence to log.
        throwable - the Throwable to log, including its stack trace.
      • fatal

        public void fatal​(Object message)
        Description copied from interface: Logger
        Logs a message object with the FATAL level.
        Specified by:
        fatal in interface Logger
        Parameters:
        message - the message object to log.
      • fatal

        public void fatal​(Object message,
                          Throwable throwable)
        Description copied from interface: Logger
        Logs a message at the FATAL level including the stack trace of the Throwable throwable passed as parameter.
        Specified by:
        fatal in interface Logger
        Parameters:
        message - the message object to log.
        throwable - the Throwable to log, including its stack trace.
      • fatal

        public void fatal​(String message)
        Description copied from interface: Logger
        Logs a message object with the FATAL level.
        Specified by:
        fatal in interface Logger
        Parameters:
        message - the message string to log.
      • fatal

        public void fatal​(String message,
                          Object... params)
        Description copied from interface: Logger
        Logs a message with parameters at the FATAL level.
        Specified by:
        fatal in interface Logger
        Parameters:
        message - the message to log; the format depends on the message factory.
        params - parameters to the message.
        See Also:
        Logger.getMessageFactory()
      • fatal

        public void fatal​(String message,
                          Throwable throwable)
        Description copied from interface: Logger
        Logs a message at the FATAL level including the stack trace of the Throwable throwable passed as parameter.
        Specified by:
        fatal in interface Logger
        Parameters:
        message - the message object to log.
        throwable - the Throwable to log, including its stack trace.
      • fatal

        public void fatal​(Supplier<?> messageSupplier)
        Description copied from interface: Logger
        Logs a message which is only to be constructed if the logging level is the FATAL level.
        Specified by:
        fatal in interface Logger
        Parameters:
        messageSupplier - A function, which when called, produces the desired log message; the format depends on the message factory.
      • fatal

        public void fatal​(Supplier<?> messageSupplier,
                          Throwable throwable)
        Description copied from interface: Logger
        Logs a message (only to be constructed if the logging level is the FATAL level) including the stack trace of the Throwable throwable passed as parameter.
        Specified by:
        fatal in interface Logger
        Parameters:
        messageSupplier - A function, which when called, produces the desired log message; the format depends on the message factory.
        throwable - the Throwable to log, including its stack trace.
      • fatal

        public void fatal​(Marker marker,
                          Supplier<?> messageSupplier)
        Description copied from interface: Logger
        Logs a message which is only to be constructed if the logging level is the FATAL level with the specified Marker.
        Specified by:
        fatal in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        messageSupplier - A function, which when called, produces the desired log message; the format depends on the message factory.
      • fatal

        public void fatal​(Marker marker,
                          String message,
                          Supplier<?>... paramSuppliers)
        Description copied from interface: Logger
        Logs a message with parameters which are only to be constructed if the logging level is the FATAL level.
        Specified by:
        fatal in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message to log; the format depends on the message factory.
        paramSuppliers - An array of functions, which when called, produce the desired log message parameters.
      • fatal

        public void fatal​(Marker marker,
                          Supplier<?> messageSupplier,
                          Throwable throwable)
        Description copied from interface: Logger
        Logs a message (only to be constructed if the logging level is the FATAL level) with the specified Marker and including the stack trace of the Throwable throwable passed as parameter.
        Specified by:
        fatal in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        messageSupplier - A function, which when called, produces the desired log message; the format depends on the message factory.
        throwable - A Throwable or null.
      • fatal

        public void fatal​(String message,
                          Supplier<?>... paramSuppliers)
        Description copied from interface: Logger
        Logs a message with parameters which are only to be constructed if the logging level is the FATAL level.
        Specified by:
        fatal in interface Logger
        Parameters:
        message - the message to log; the format depends on the message factory.
        paramSuppliers - An array of functions, which when called, produce the desired log message parameters.
      • fatal

        public void fatal​(Marker marker,
                          MessageSupplier messageSupplier)
        Description copied from interface: Logger
        Logs a message which is only to be constructed if the logging level is the FATAL level with the specified Marker. The MessageSupplier may or may not use the MessageFactory to construct the Message.
        Specified by:
        fatal in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        messageSupplier - A function, which when called, produces the desired log message.
      • fatal

        public void fatal​(Marker marker,
                          MessageSupplier messageSupplier,
                          Throwable throwable)
        Description copied from interface: Logger
        Logs a message (only to be constructed if the logging level is the FATAL level) with the specified Marker and including the stack trace of the Throwable throwable passed as parameter. The MessageSupplier may or may not use the MessageFactory to construct the Message.
        Specified by:
        fatal in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        messageSupplier - A function, which when called, produces the desired log message.
        throwable - A Throwable or null.
      • fatal

        public void fatal​(MessageSupplier messageSupplier)
        Description copied from interface: Logger
        Logs a message which is only to be constructed if the logging level is the FATAL level. The MessageSupplier may or may not use the MessageFactory to construct the Message.
        Specified by:
        fatal in interface Logger
        Parameters:
        messageSupplier - A function, which when called, produces the desired log message.
      • fatal

        public void fatal​(MessageSupplier messageSupplier,
                          Throwable throwable)
        Description copied from interface: Logger
        Logs a message (only to be constructed if the logging level is the FATAL level) including the stack trace of the Throwable throwable passed as parameter. The MessageSupplier may or may not use the MessageFactory to construct the Message.
        Specified by:
        fatal in interface Logger
        Parameters:
        messageSupplier - A function, which when called, produces the desired log message.
        throwable - the Throwable to log, including its stack trace.
      • fatal

        public void fatal​(Marker marker,
                          String message,
                          Object p0)
        Description copied from interface: Logger
        Logs a message with parameters at fatal level.
        Specified by:
        fatal in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
      • fatal

        public void fatal​(Marker marker,
                          String message,
                          Object p0,
                          Object p1)
        Description copied from interface: Logger
        Logs a message with parameters at fatal level.
        Specified by:
        fatal in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
      • fatal

        public void fatal​(Marker marker,
                          String message,
                          Object p0,
                          Object p1,
                          Object p2)
        Description copied from interface: Logger
        Logs a message with parameters at fatal level.
        Specified by:
        fatal in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
      • fatal

        public void fatal​(Marker marker,
                          String message,
                          Object p0,
                          Object p1,
                          Object p2,
                          Object p3)
        Description copied from interface: Logger
        Logs a message with parameters at fatal level.
        Specified by:
        fatal in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
        p3 - parameter to the message.
      • fatal

        public void fatal​(Marker marker,
                          String message,
                          Object p0,
                          Object p1,
                          Object p2,
                          Object p3,
                          Object p4)
        Description copied from interface: Logger
        Logs a message with parameters at fatal level.
        Specified by:
        fatal in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
        p3 - parameter to the message.
        p4 - parameter to the message.
      • fatal

        public void fatal​(Marker marker,
                          String message,
                          Object p0,
                          Object p1,
                          Object p2,
                          Object p3,
                          Object p4,
                          Object p5)
        Description copied from interface: Logger
        Logs a message with parameters at fatal level.
        Specified by:
        fatal in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
        p3 - parameter to the message.
        p4 - parameter to the message.
        p5 - parameter to the message.
      • fatal

        public void fatal​(Marker marker,
                          String message,
                          Object p0,
                          Object p1,
                          Object p2,
                          Object p3,
                          Object p4,
                          Object p5,
                          Object p6)
        Description copied from interface: Logger
        Logs a message with parameters at fatal level.
        Specified by:
        fatal in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
        p3 - parameter to the message.
        p4 - parameter to the message.
        p5 - parameter to the message.
        p6 - parameter to the message.
      • fatal

        public void fatal​(Marker marker,
                          String message,
                          Object p0,
                          Object p1,
                          Object p2,
                          Object p3,
                          Object p4,
                          Object p5,
                          Object p6,
                          Object p7)
        Description copied from interface: Logger
        Logs a message with parameters at fatal level.
        Specified by:
        fatal in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
        p3 - parameter to the message.
        p4 - parameter to the message.
        p5 - parameter to the message.
        p6 - parameter to the message.
        p7 - parameter to the message.
      • fatal

        public void fatal​(Marker marker,
                          String message,
                          Object p0,
                          Object p1,
                          Object p2,
                          Object p3,
                          Object p4,
                          Object p5,
                          Object p6,
                          Object p7,
                          Object p8)
        Description copied from interface: Logger
        Logs a message with parameters at fatal level.
        Specified by:
        fatal in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
        p3 - parameter to the message.
        p4 - parameter to the message.
        p5 - parameter to the message.
        p6 - parameter to the message.
        p7 - parameter to the message.
        p8 - parameter to the message.
      • fatal

        public void fatal​(Marker marker,
                          String message,
                          Object p0,
                          Object p1,
                          Object p2,
                          Object p3,
                          Object p4,
                          Object p5,
                          Object p6,
                          Object p7,
                          Object p8,
                          Object p9)
        Description copied from interface: Logger
        Logs a message with parameters at fatal level.
        Specified by:
        fatal in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
        p3 - parameter to the message.
        p4 - parameter to the message.
        p5 - parameter to the message.
        p6 - parameter to the message.
        p7 - parameter to the message.
        p8 - parameter to the message.
        p9 - parameter to the message.
      • fatal

        public void fatal​(String message,
                          Object p0)
        Description copied from interface: Logger
        Logs a message with parameters at fatal level.
        Specified by:
        fatal in interface Logger
        Parameters:
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
      • fatal

        public void fatal​(String message,
                          Object p0,
                          Object p1)
        Description copied from interface: Logger
        Logs a message with parameters at fatal level.
        Specified by:
        fatal in interface Logger
        Parameters:
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
      • fatal

        public void fatal​(String message,
                          Object p0,
                          Object p1,
                          Object p2)
        Description copied from interface: Logger
        Logs a message with parameters at fatal level.
        Specified by:
        fatal in interface Logger
        Parameters:
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
      • fatal

        public void fatal​(String message,
                          Object p0,
                          Object p1,
                          Object p2,
                          Object p3)
        Description copied from interface: Logger
        Logs a message with parameters at fatal level.
        Specified by:
        fatal in interface Logger
        Parameters:
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
        p3 - parameter to the message.
      • fatal

        public void fatal​(String message,
                          Object p0,
                          Object p1,
                          Object p2,
                          Object p3,
                          Object p4)
        Description copied from interface: Logger
        Logs a message with parameters at fatal level.
        Specified by:
        fatal in interface Logger
        Parameters:
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
        p3 - parameter to the message.
        p4 - parameter to the message.
      • fatal

        public void fatal​(String message,
                          Object p0,
                          Object p1,
                          Object p2,
                          Object p3,
                          Object p4,
                          Object p5)
        Description copied from interface: Logger
        Logs a message with parameters at fatal level.
        Specified by:
        fatal in interface Logger
        Parameters:
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
        p3 - parameter to the message.
        p4 - parameter to the message.
        p5 - parameter to the message.
      • fatal

        public void fatal​(String message,
                          Object p0,
                          Object p1,
                          Object p2,
                          Object p3,
                          Object p4,
                          Object p5,
                          Object p6)
        Description copied from interface: Logger
        Logs a message with parameters at fatal level.
        Specified by:
        fatal in interface Logger
        Parameters:
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
        p3 - parameter to the message.
        p4 - parameter to the message.
        p5 - parameter to the message.
        p6 - parameter to the message.
      • fatal

        public void fatal​(String message,
                          Object p0,
                          Object p1,
                          Object p2,
                          Object p3,
                          Object p4,
                          Object p5,
                          Object p6,
                          Object p7)
        Description copied from interface: Logger
        Logs a message with parameters at fatal level.
        Specified by:
        fatal in interface Logger
        Parameters:
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
        p3 - parameter to the message.
        p4 - parameter to the message.
        p5 - parameter to the message.
        p6 - parameter to the message.
        p7 - parameter to the message.
      • fatal

        public void fatal​(String message,
                          Object p0,
                          Object p1,
                          Object p2,
                          Object p3,
                          Object p4,
                          Object p5,
                          Object p6,
                          Object p7,
                          Object p8)
        Description copied from interface: Logger
        Logs a message with parameters at fatal level.
        Specified by:
        fatal in interface Logger
        Parameters:
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
        p3 - parameter to the message.
        p4 - parameter to the message.
        p5 - parameter to the message.
        p6 - parameter to the message.
        p7 - parameter to the message.
        p8 - parameter to the message.
      • fatal

        public void fatal​(String message,
                          Object p0,
                          Object p1,
                          Object p2,
                          Object p3,
                          Object p4,
                          Object p5,
                          Object p6,
                          Object p7,
                          Object p8,
                          Object p9)
        Description copied from interface: Logger
        Logs a message with parameters at fatal level.
        Specified by:
        fatal in interface Logger
        Parameters:
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
        p3 - parameter to the message.
        p4 - parameter to the message.
        p5 - parameter to the message.
        p6 - parameter to the message.
        p7 - parameter to the message.
        p8 - parameter to the message.
        p9 - parameter to the message.
      • getMessageFactory

        public <MF extends MessageFactory> MF getMessageFactory()
        Description copied from interface: Logger
        Gets the message factory used to convert message Objects and Strings/CharSequences into actual log Messages. Since version 2.6, Log4j internally uses message factories that implement the MessageFactory2 interface. From version 2.6.2, the return type of this method was changed from MessageFactory to <MF extends MessageFactory> MF. The returned factory will always implement MessageFactory2, but the return type of this method could not be changed to MessageFactory2 without breaking binary compatibility.
        Specified by:
        getMessageFactory in interface Logger
        Returns:
        the message factory, as an instance of MessageFactory2
      • getName

        public String getName()
        Description copied from interface: Logger
        Gets the logger name.
        Specified by:
        getName in interface Logger
        Returns:
        the logger name.
      • info

        public void info​(Marker marker,
                         Message message)
        Description copied from interface: Logger
        Logs a message with the specific Marker at the INFO level.
        Specified by:
        info in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message string to be logged
      • info

        public void info​(Marker marker,
                         Message message,
                         Throwable throwable)
        Description copied from interface: Logger
        Logs a message with the specific Marker at the INFO level.
        Specified by:
        info in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message string to be logged
        throwable - A Throwable or null.
      • info

        public void info​(Marker marker,
                         CharSequence message)
        Description copied from interface: Logger
        Logs a message CharSequence with the INFO level.
        Specified by:
        info in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message CharSequence to log.
      • info

        public void info​(Marker marker,
                         CharSequence message,
                         Throwable throwable)
        Description copied from interface: Logger
        Logs a CharSequence at the INFO level including the stack trace of the Throwable throwable passed as parameter.
        Specified by:
        info in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message CharSequence to log.
        throwable - the Throwable to log, including its stack trace.
      • info

        public void info​(Marker marker,
                         Object message)
        Description copied from interface: Logger
        Logs a message object with the INFO level.
        Specified by:
        info in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message object to log.
      • info

        public void info​(Marker marker,
                         Object message,
                         Throwable throwable)
        Description copied from interface: Logger
        Logs a message at the INFO level including the stack trace of the Throwable throwable passed as parameter.
        Specified by:
        info in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message object to log.
        throwable - the Throwable to log, including its stack trace.
      • info

        public void info​(Marker marker,
                         String message)
        Description copied from interface: Logger
        Logs a message object with the INFO level.
        Specified by:
        info in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message object to log.
      • info

        public void info​(Marker marker,
                         String message,
                         Object... params)
        Description copied from interface: Logger
        Logs a message with parameters at the INFO level.
        Specified by:
        info in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message to log; the format depends on the message factory.
        params - parameters to the message.
        See Also:
        Logger.getMessageFactory()
      • info

        public void info​(Marker marker,
                         String message,
                         Throwable throwable)
        Description copied from interface: Logger
        Logs a message at the INFO level including the stack trace of the Throwable throwable passed as parameter.
        Specified by:
        info in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message object to log.
        throwable - the Throwable to log, including its stack trace.
      • info

        public void info​(Message message)
        Description copied from interface: Logger
        Logs a message with the specific Marker at the INFO level.
        Specified by:
        info in interface Logger
        Parameters:
        message - the message string to be logged
      • info

        public void info​(Message message,
                         Throwable throwable)
        Description copied from interface: Logger
        Logs a message with the specific Marker at the INFO level.
        Specified by:
        info in interface Logger
        Parameters:
        message - the message string to be logged
        throwable - A Throwable or null.
      • info

        public void info​(CharSequence message)
        Description copied from interface: Logger
        Logs a message CharSequence with the INFO level.
        Specified by:
        info in interface Logger
        Parameters:
        message - the message CharSequence to log.
      • info

        public void info​(CharSequence message,
                         Throwable throwable)
        Description copied from interface: Logger
        Logs a CharSequence at the INFO level including the stack trace of the Throwable throwable passed as parameter.
        Specified by:
        info in interface Logger
        Parameters:
        message - the message CharSequence to log.
        throwable - the Throwable to log, including its stack trace.
      • info

        public void info​(Object message)
        Description copied from interface: Logger
        Logs a message object with the INFO level.
        Specified by:
        info in interface Logger
        Parameters:
        message - the message object to log.
      • info

        public void info​(Object message,
                         Throwable throwable)
        Description copied from interface: Logger
        Logs a message at the INFO level including the stack trace of the Throwable throwable passed as parameter.
        Specified by:
        info in interface Logger
        Parameters:
        message - the message object to log.
        throwable - the Throwable to log, including its stack trace.
      • info

        public void info​(String message)
        Description copied from interface: Logger
        Logs a message object with the INFO level.
        Specified by:
        info in interface Logger
        Parameters:
        message - the message string to log.
      • info

        public void info​(String message,
                         Object... params)
        Description copied from interface: Logger
        Logs a message with parameters at the INFO level.
        Specified by:
        info in interface Logger
        Parameters:
        message - the message to log; the format depends on the message factory.
        params - parameters to the message.
        See Also:
        Logger.getMessageFactory()
      • info

        public void info​(String message,
                         Throwable throwable)
        Description copied from interface: Logger
        Logs a message at the INFO level including the stack trace of the Throwable throwable passed as parameter.
        Specified by:
        info in interface Logger
        Parameters:
        message - the message object to log.
        throwable - the Throwable to log, including its stack trace.
      • info

        public void info​(Supplier<?> messageSupplier)
        Description copied from interface: Logger
        Logs a message which is only to be constructed if the logging level is the INFO level.
        Specified by:
        info in interface Logger
        Parameters:
        messageSupplier - A function, which when called, produces the desired log message; the format depends on the message factory.
      • info

        public void info​(Supplier<?> messageSupplier,
                         Throwable throwable)
        Description copied from interface: Logger
        Logs a message (only to be constructed if the logging level is the INFO level) including the stack trace of the Throwable throwable passed as parameter.
        Specified by:
        info in interface Logger
        Parameters:
        messageSupplier - A function, which when called, produces the desired log message; the format depends on the message factory.
        throwable - the Throwable to log, including its stack trace.
      • info

        public void info​(Marker marker,
                         Supplier<?> messageSupplier)
        Description copied from interface: Logger
        Logs a message which is only to be constructed if the logging level is the INFO level with the specified Marker.
        Specified by:
        info in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        messageSupplier - A function, which when called, produces the desired log message; the format depends on the message factory.
      • info

        public void info​(Marker marker,
                         String message,
                         Supplier<?>... paramSuppliers)
        Description copied from interface: Logger
        Logs a message with parameters which are only to be constructed if the logging level is the INFO level.
        Specified by:
        info in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message to log; the format depends on the message factory.
        paramSuppliers - An array of functions, which when called, produce the desired log message parameters.
      • info

        public void info​(Marker marker,
                         Supplier<?> messageSupplier,
                         Throwable throwable)
        Description copied from interface: Logger
        Logs a message (only to be constructed if the logging level is the INFO level) with the specified Marker and including the stack trace of the Throwable throwable passed as parameter.
        Specified by:
        info in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        messageSupplier - A function, which when called, produces the desired log message; the format depends on the message factory.
        throwable - A Throwable or null.
      • info

        public void info​(String message,
                         Supplier<?>... paramSuppliers)
        Description copied from interface: Logger
        Logs a message with parameters which are only to be constructed if the logging level is the INFO level.
        Specified by:
        info in interface Logger
        Parameters:
        message - the message to log; the format depends on the message factory.
        paramSuppliers - An array of functions, which when called, produce the desired log message parameters.
      • info

        public void info​(Marker marker,
                         MessageSupplier messageSupplier)
        Description copied from interface: Logger
        Logs a message which is only to be constructed if the logging level is the INFO level with the specified Marker. The MessageSupplier may or may not use the MessageFactory to construct the Message.
        Specified by:
        info in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        messageSupplier - A function, which when called, produces the desired log message.
      • info

        public void info​(Marker marker,
                         MessageSupplier messageSupplier,
                         Throwable throwable)
        Description copied from interface: Logger
        Logs a message (only to be constructed if the logging level is the INFO level) with the specified Marker and including the stack trace of the Throwable throwable passed as parameter. The MessageSupplier may or may not use the MessageFactory to construct the Message.
        Specified by:
        info in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        messageSupplier - A function, which when called, produces the desired log message.
        throwable - A Throwable or null.
      • info

        public void info​(MessageSupplier messageSupplier)
        Description copied from interface: Logger
        Logs a message which is only to be constructed if the logging level is the INFO level. The MessageSupplier may or may not use the MessageFactory to construct the Message.
        Specified by:
        info in interface Logger
        Parameters:
        messageSupplier - A function, which when called, produces the desired log message.
      • info

        public void info​(MessageSupplier messageSupplier,
                         Throwable throwable)
        Description copied from interface: Logger
        Logs a message (only to be constructed if the logging level is the INFO level) including the stack trace of the Throwable throwable passed as parameter. The MessageSupplier may or may not use the MessageFactory to construct the Message.
        Specified by:
        info in interface Logger
        Parameters:
        messageSupplier - A function, which when called, produces the desired log message.
        throwable - the Throwable to log, including its stack trace.
      • info

        public void info​(Marker marker,
                         String message,
                         Object p0)
        Description copied from interface: Logger
        Logs a message with parameters at info level.
        Specified by:
        info in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
      • info

        public void info​(Marker marker,
                         String message,
                         Object p0,
                         Object p1)
        Description copied from interface: Logger
        Logs a message with parameters at info level.
        Specified by:
        info in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
      • info

        public void info​(Marker marker,
                         String message,
                         Object p0,
                         Object p1,
                         Object p2)
        Description copied from interface: Logger
        Logs a message with parameters at info level.
        Specified by:
        info in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
      • info

        public void info​(Marker marker,
                         String message,
                         Object p0,
                         Object p1,
                         Object p2,
                         Object p3)
        Description copied from interface: Logger
        Logs a message with parameters at info level.
        Specified by:
        info in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
        p3 - parameter to the message.
      • info

        public void info​(Marker marker,
                         String message,
                         Object p0,
                         Object p1,
                         Object p2,
                         Object p3,
                         Object p4)
        Description copied from interface: Logger
        Logs a message with parameters at info level.
        Specified by:
        info in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
        p3 - parameter to the message.
        p4 - parameter to the message.
      • info

        public void info​(Marker marker,
                         String message,
                         Object p0,
                         Object p1,
                         Object p2,
                         Object p3,
                         Object p4,
                         Object p5)
        Description copied from interface: Logger
        Logs a message with parameters at info level.
        Specified by:
        info in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
        p3 - parameter to the message.
        p4 - parameter to the message.
        p5 - parameter to the message.
      • info

        public void info​(Marker marker,
                         String message,
                         Object p0,
                         Object p1,
                         Object p2,
                         Object p3,
                         Object p4,
                         Object p5,
                         Object p6)
        Description copied from interface: Logger
        Logs a message with parameters at info level.
        Specified by:
        info in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
        p3 - parameter to the message.
        p4 - parameter to the message.
        p5 - parameter to the message.
        p6 - parameter to the message.
      • info

        public void info​(Marker marker,
                         String message,
                         Object p0,
                         Object p1,
                         Object p2,
                         Object p3,
                         Object p4,
                         Object p5,
                         Object p6,
                         Object p7)
        Description copied from interface: Logger
        Logs a message with parameters at info level.
        Specified by:
        info in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
        p3 - parameter to the message.
        p4 - parameter to the message.
        p5 - parameter to the message.
        p6 - parameter to the message.
        p7 - parameter to the message.
      • info

        public void info​(Marker marker,
                         String message,
                         Object p0,
                         Object p1,
                         Object p2,
                         Object p3,
                         Object p4,
                         Object p5,
                         Object p6,
                         Object p7,
                         Object p8)
        Description copied from interface: Logger
        Logs a message with parameters at info level.
        Specified by:
        info in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
        p3 - parameter to the message.
        p4 - parameter to the message.
        p5 - parameter to the message.
        p6 - parameter to the message.
        p7 - parameter to the message.
        p8 - parameter to the message.
      • info

        public void info​(Marker marker,
                         String message,
                         Object p0,
                         Object p1,
                         Object p2,
                         Object p3,
                         Object p4,
                         Object p5,
                         Object p6,
                         Object p7,
                         Object p8,
                         Object p9)
        Description copied from interface: Logger
        Logs a message with parameters at info level.
        Specified by:
        info in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
        p3 - parameter to the message.
        p4 - parameter to the message.
        p5 - parameter to the message.
        p6 - parameter to the message.
        p7 - parameter to the message.
        p8 - parameter to the message.
        p9 - parameter to the message.
      • info

        public void info​(String message,
                         Object p0)
        Description copied from interface: Logger
        Logs a message with parameters at info level.
        Specified by:
        info in interface Logger
        Parameters:
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
      • info

        public void info​(String message,
                         Object p0,
                         Object p1)
        Description copied from interface: Logger
        Logs a message with parameters at info level.
        Specified by:
        info in interface Logger
        Parameters:
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
      • info

        public void info​(String message,
                         Object p0,
                         Object p1,
                         Object p2)
        Description copied from interface: Logger
        Logs a message with parameters at info level.
        Specified by:
        info in interface Logger
        Parameters:
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
      • info

        public void info​(String message,
                         Object p0,
                         Object p1,
                         Object p2,
                         Object p3)
        Description copied from interface: Logger
        Logs a message with parameters at info level.
        Specified by:
        info in interface Logger
        Parameters:
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
        p3 - parameter to the message.
      • info

        public void info​(String message,
                         Object p0,
                         Object p1,
                         Object p2,
                         Object p3,
                         Object p4)
        Description copied from interface: Logger
        Logs a message with parameters at info level.
        Specified by:
        info in interface Logger
        Parameters:
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
        p3 - parameter to the message.
        p4 - parameter to the message.
      • info

        public void info​(String message,
                         Object p0,
                         Object p1,
                         Object p2,
                         Object p3,
                         Object p4,
                         Object p5)
        Description copied from interface: Logger
        Logs a message with parameters at info level.
        Specified by:
        info in interface Logger
        Parameters:
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
        p3 - parameter to the message.
        p4 - parameter to the message.
        p5 - parameter to the message.
      • info

        public void info​(String message,
                         Object p0,
                         Object p1,
                         Object p2,
                         Object p3,
                         Object p4,
                         Object p5,
                         Object p6)
        Description copied from interface: Logger
        Logs a message with parameters at info level.
        Specified by:
        info in interface Logger
        Parameters:
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
        p3 - parameter to the message.
        p4 - parameter to the message.
        p5 - parameter to the message.
        p6 - parameter to the message.
      • info

        public void info​(String message,
                         Object p0,
                         Object p1,
                         Object p2,
                         Object p3,
                         Object p4,
                         Object p5,
                         Object p6,
                         Object p7)
        Description copied from interface: Logger
        Logs a message with parameters at info level.
        Specified by:
        info in interface Logger
        Parameters:
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
        p3 - parameter to the message.
        p4 - parameter to the message.
        p5 - parameter to the message.
        p6 - parameter to the message.
        p7 - parameter to the message.
      • info

        public void info​(String message,
                         Object p0,
                         Object p1,
                         Object p2,
                         Object p3,
                         Object p4,
                         Object p5,
                         Object p6,
                         Object p7,
                         Object p8)
        Description copied from interface: Logger
        Logs a message with parameters at info level.
        Specified by:
        info in interface Logger
        Parameters:
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
        p3 - parameter to the message.
        p4 - parameter to the message.
        p5 - parameter to the message.
        p6 - parameter to the message.
        p7 - parameter to the message.
        p8 - parameter to the message.
      • info

        public void info​(String message,
                         Object p0,
                         Object p1,
                         Object p2,
                         Object p3,
                         Object p4,
                         Object p5,
                         Object p6,
                         Object p7,
                         Object p8,
                         Object p9)
        Description copied from interface: Logger
        Logs a message with parameters at info level.
        Specified by:
        info in interface Logger
        Parameters:
        message - the message to log; the format depends on the message factory.
        p0 - parameter to the message.
        p1 - parameter to the message.
        p2 - parameter to the message.
        p3 - parameter to the message.
        p4 - parameter to the message.
        p5 - parameter to the message.
        p6 - parameter to the message.
        p7 - parameter to the message.
        p8 - parameter to the message.
        p9 - parameter to the message.
      • isDebugEnabled

        public boolean isDebugEnabled()
        Description copied from interface: Logger
        Checks whether this Logger is enabled for the DEBUG Level.
        Specified by:
        isDebugEnabled in interface Logger
        Returns:
        boolean - true if this Logger is enabled for level DEBUG, false otherwise.
      • isDebugEnabled

        public boolean isDebugEnabled​(Marker marker)
        Description copied from interface: Logger
        Checks whether this Logger is enabled for the DEBUG Level.
        Specified by:
        isDebugEnabled in interface Logger
        Parameters:
        marker - The Marker to check
        Returns:
        boolean - true if this Logger is enabled for level DEBUG, false otherwise.
      • isEnabled

        public boolean isEnabled​(Level level)
        Description copied from interface: Logger
        Checks whether this Logger is enabled for the given Level.

        Note that passing in OFF always returns true.

        Specified by:
        isEnabled in interface Logger
        Parameters:
        level - the Level to check
        Returns:
        boolean - true if this Logger is enabled for level, false otherwise.
      • isEnabled

        public boolean isEnabled​(Level level,
                                 Marker marker)
        Description copied from interface: Logger
        Checks whether this Logger is enabled for the given Level and Marker.
        Specified by:
        isEnabled in interface Logger
        Parameters:
        level - The Level to check
        marker - The Marker to check
        Returns:
        boolean - true if this Logger is enabled for level and marker, false otherwise.
      • isErrorEnabled

        public boolean isErrorEnabled()
        Description copied from interface: Logger
        Checks whether this Logger is enabled for the ERROR Level.
        Specified by:
        isErrorEnabled in interface Logger
        Returns:
        boolean - true if this Logger is enabled for level ERROR, false otherwise.
      • isErrorEnabled

        public boolean isErrorEnabled​(Marker marker)
        Description copied from interface: Logger
        Checks whether this Logger is enabled for the ERROR Level.
        Specified by:
        isErrorEnabled in interface Logger
        Parameters:
        marker - The Marker to check
        Returns:
        boolean - true if this Logger is enabled for level ERROR, false otherwise.
      • isFatalEnabled

        public boolean isFatalEnabled()
        Description copied from interface: Logger
        Checks whether this Logger is enabled for the FATAL Level.
        Specified by:
        isFatalEnabled in interface Logger
        Returns:
        boolean - true if this Logger is enabled for level FATAL, false otherwise.
      • isFatalEnabled

        public boolean isFatalEnabled​(Marker marker)
        Description copied from interface: Logger
        Checks whether this Logger is enabled for the FATAL Level.
        Specified by:
        isFatalEnabled in interface Logger
        Parameters:
        marker - The Marker to check
        Returns:
        boolean - true if this Logger is enabled for level FATAL, false otherwise.
      • isInfoEnabled

        public boolean isInfoEnabled()
        Description copied from interface: Logger
        Checks whether this Logger is enabled for the INFO Level.
        Specified by:
        isInfoEnabled in interface Logger
        Returns:
        boolean - true if this Logger is enabled for level INFO, false otherwise.
      • isInfoEnabled

        public boolean isInfoEnabled​(Marker marker)
        Description copied from interface: Logger
        Checks whether this Logger is enabled for the INFO Level.
        Specified by:
        isInfoEnabled in interface Logger
        Parameters:
        marker - The Marker to check
        Returns:
        boolean - true if this Logger is enabled for level INFO, false otherwise.
      • isTraceEnabled

        public boolean isTraceEnabled()
        Description copied from interface: Logger
        Checks whether this Logger is enabled for the TRACE level.
        Specified by:
        isTraceEnabled in interface Logger
        Returns:
        boolean - true if this Logger is enabled for level TRACE, false otherwise.
      • isTraceEnabled

        public boolean isTraceEnabled​(Marker marker)
        Description copied from interface: Logger
        Checks whether this Logger is enabled for the TRACE level.
        Specified by:
        isTraceEnabled in interface Logger
        Parameters:
        marker - The Marker to check
        Returns:
        boolean - true if this Logger is enabled for level TRACE, false otherwise.
      • isWarnEnabled

        public boolean isWarnEnabled()
        Description copied from interface: Logger
        Checks whether this Logger is enabled for the WARN Level.
        Specified by:
        isWarnEnabled in interface Logger
        Returns:
        boolean - true if this Logger is enabled for level WARN, false otherwise.
      • isWarnEnabled

        public boolean isWarnEnabled​(Marker marker)
        Description copied from interface: Logger
        Checks whether this Logger is enabled for the WARN Level.
        Specified by:
        isWarnEnabled in interface Logger
        Parameters:
        marker - The Marker to check
        Returns:
        boolean - true if this Logger is enabled for level WARN, false otherwise.
      • log

        public void log​(Level level,
                        Marker marker,
                        Message message)
        Description copied from interface: Logger
        Logs a message with the specific Marker at the given level.
        Specified by:
        log in interface Logger
        Parameters:
        level - the logging level
        marker - the marker data specific to this log statement
        message - the message string to be logged
      • log

        public void log​(Level level,
                        Marker marker,
                        Message message,
                        Throwable throwable)
        Description copied from interface: Logger
        Logs a message with the specific Marker at the given level.
        Specified by:
        log in interface Logger
        Parameters:
        level - the logging level
        marker - the marker data specific to this log statement
        message - the message string to be logged
        throwable - A Throwable or null.
      • log

        public void log​(Level level,
                        Marker marker,
                        CharSequence message)
        Description copied from interface: Logger
        Logs a message CharSequence with the given level.
        Specified by:
        log in interface Logger
        Parameters:
        level - the logging level
        marker - the marker data specific to this log statement
        message - the message CharSequence to log.
      • log

        public void log​(Level level,
                        Marker marker,
                        CharSequence message,
                        Throwable throwable)
        Description copied from interface: Logger
        Logs a CharSequence at the given level including the stack trace of the Throwable throwable passed as parameter.
        Specified by:
        log in interface Logger
        Parameters:
        level - the logging level
        marker - the marker data specific to this log statement
        message - the message CharSequence to log.
        throwable - the Throwable to log, including its stack trace.
      • log

        public void log​(Level level,
                        Marker marker,
                        Object message)
        Description copied from interface: Logger
        Logs a message object with the given level.
        Specified by:
        log in interface Logger
        Parameters:
        level - the logging level
        marker - the marker data specific to this log statement
        message - the message object to log.
      • log

        public void log​(Level level,
                        Marker marker,
                        Object message,
                        Throwable throwable)
        Description copied from interface: Logger
        Logs a message at the given level including the stack trace of the Throwable throwable passed as parameter.
        Specified by:
        log in interface Logger
        Parameters:
        level - the logging level
        marker - the marker data specific to this log statement
        message - the message to log.
        throwable - the Throwable to log, including its stack trace.
      • log

        public void log​(Level level,
                        Marker marker,
                        String message)
        Description copied from interface: Logger
        Logs a message object with the given level.
        Specified by:
        log in interface Logger
        Parameters:
        level - the logging level
        marker - the marker data specific to this log statement
        message - the message object to log.
      • log

        public void log​(Level level,
                        Marker marker,
                        String message,
                        Object... params)
        Description copied from interface: Logger
        Logs a message with parameters at the given level.
        Specified by:
        log in interface Logger
        Parameters:
        level - the logging level
        marker - the marker data specific to this log statement
        message - the message to log; the format depends on the message factory.
        params - parameters to the message.
        See Also:
        Logger.getMessageFactory()
      • log

        public void log​(Level level,
                        Marker marker,
                        String message,
                        Throwable throwable)
        Description copied from interface: Logger
        Logs a message at the given level including the stack trace of the Throwable throwable passed as parameter.
        Specified by:
        log in interface Logger
        Parameters:
        level - the logging level
        marker - the marker data specific to this log statement
        message - the message to log.
        throwable - the Throwable to log, including its stack trace.
      • log

        public void log​(Level level,
                        Message message)
        Description copied from interface: Logger
        Logs a message with the specific Marker at the given level.
        Specified by:
        log in interface Logger
        Parameters:
        level - the logging level
        message - the message string to be logged
      • log

        public void log​(Level level,
                        Message message,
                        Throwable throwable)
        Description copied from interface: Logger
        Logs a message with the specific Marker at the given level.
        Specified by:
        log in interface Logger
        Parameters:
        level - the logging level
        message - the message string to be logged
        throwable - A Throwable or null.
      • log

        public void log​(Level level,
                        CharSequence message)
        Description copied from interface: Logger
        Logs a message CharSequence with the given level.
        Specified by:
        log in interface Logger
        Parameters:
        level - the logging level
        message - the message CharSequence to log.
      • log

        public void log​(Level level,
                        CharSequence message,
                        Throwable throwable)
        Description copied from interface: Logger
        Logs a CharSequence at the given level including the stack trace of the Throwable throwable passed as parameter.
        Specified by:
        log in interface Logger
        Parameters:
        level - the logging level
        message - the message CharSequence to log.
        throwable - the Throwable to log, including its stack trace.
      • log

        public void log​(Level level,
                        Object message)
        Description copied from interface: Logger
        Logs a message object with the given level.
        Specified by:
        log in interface Logger
        Parameters:
        level - the logging level
        message - the message object to log.
      • log

        public void log​(Level level,
                        Object message,
                        Throwable throwable)
        Description copied from interface: Logger
        Logs a message at the given level including the stack trace of the Throwable throwable passed as parameter.
        Specified by:
        log in interface Logger
        Parameters:
        level - the logging level
        message - the message to log.
        throwable - the Throwable to log, including its stack trace.
      • log

        public void log​(Level level,
                        String message)
        Description copied from interface: Logger
        Logs a message object with the given level.
        Specified by:
        log in interface Logger
        Parameters:
        level - the logging level
        message - the message string to log.
      • log

        public void log​(Level level,
                        String message,
                        Object... params)
        Description copied from interface: Logger
        Logs a message with parameters at the given level.
        Specified by:
        log in interface Logger
        Parameters:
        level - the logging level
        message - the message to log; the format depends on the message factory.
        params - parameters to the message.
        See Also:
        Logger.getMessageFactory()
      • log

        public void log​(Level level,
                        String message,
                        Throwable throwable)
        Description copied from interface: Logger
        Logs a message at the given level including the stack trace of the Throwable throwable passed as parameter.
        Specified by:
        log in interface Logger
        Parameters:
        level - the logging level
        message - the message to log.
        throwable - the Throwable to log, including its stack trace.
      • log

        public void log​(Level level,
                        Supplier<?> messageSupplier)
        Description copied from interface: Logger
        Logs a message which is only to be constructed if the logging level is the specified level.
        Specified by:
        log in interface Logger
        Parameters:
        level - the logging level
        messageSupplier - A function, which when called, produces the desired log message; the format depends on the message factory.
      • log

        public void log​(Level level,
                        Supplier<?> messageSupplier,
                        Throwable throwable)
        Description copied from interface: Logger
        Logs a message (only to be constructed if the logging level is the specified level) including the stack log of the Throwable throwable passed as parameter.
        Specified by:
        log in interface Logger
        Parameters:
        level - the logging level
        messageSupplier - A function, which when called, produces the desired log message; the format depends on the message factory.
        throwable - the Throwable to log, including its stack log.
      • log

        public void log​(Level level,
                        Marker marker,
                        Supplier<?> messageSupplier)
        Description copied from interface: Logger
        Logs a message (only to be constructed if the logging level is the specified level) with the specified Marker.
        Specified by:
        log in interface Logger
        Parameters:
        level - the logging level
        marker - the marker data specific to this log statement
        messageSupplier - A function, which when called, produces the desired log message; the format depends on the message factory.
      • log

        public void log​(Level level,
                        Marker marker,
                        String message,
                        Supplier<?>... paramSuppliers)
        Description copied from interface: Logger
        Logs a message with parameters which are only to be constructed if the logging level is the specified level.
        Specified by:
        log in interface Logger
        Parameters:
        level - the logging level
        marker - the marker data specific to this log statement
        messa