Class Logger

    • Method Summary

      All Methods Instance Methods Concrete Methods Deprecated Methods 
      Modifier and Type Method Description
      void addAppender​(Appender<ILoggingEvent> newAppender)
      Deprecated.
      Add an appender.
      void callAppenders​(ILoggingEvent event)
      Deprecated.
      Invoke all the appenders of this logger.
      void debug​(java.lang.String msg)
      Deprecated.
      Log a message at the DEBUG level.
      void debug​(java.lang.String format, java.lang.Object arg)
      Deprecated.
      Log a message at the DEBUG level according to the specified format and argument.
      void debug​(java.lang.String format, java.lang.Object... argArray)
      Deprecated.
      Log a message at the DEBUG level according to the specified format and arguments.
      void debug​(java.lang.String format, java.lang.Object arg1, java.lang.Object arg2)
      Deprecated.
      Log a message at the DEBUG level according to the specified format and arguments.
      void debug​(java.lang.String msg, java.lang.Throwable t)
      Deprecated.
      Log an exception (throwable) at the DEBUG level with an accompanying message.
      void debug​(Marker marker, java.lang.String msg)
      Deprecated.
      Log a message with the specific Marker at the DEBUG level.
      void debug​(Marker marker, java.lang.String format, java.lang.Object arg)
      Deprecated.
      This method is similar to Logger.debug(String, Object) method except that the marker data is also taken into consideration.
      void debug​(Marker marker, java.lang.String format, java.lang.Object... argArray)
      Deprecated.
      This method is similar to Logger.debug(String, Object...) method except that the marker data is also taken into consideration.
      void debug​(Marker marker, java.lang.String format, java.lang.Object arg1, java.lang.Object arg2)
      Deprecated.
      This method is similar to Logger.debug(String, Object, Object) method except that the marker data is also taken into consideration.
      void debug​(Marker marker, java.lang.String msg, java.lang.Throwable t)
      Deprecated.
      This method is similar to Logger.debug(String, Throwable) method except that the marker data is also taken into consideration.
      void detachAndStopAllAppenders()
      Deprecated.
      Remove all previously added appenders from this logger instance.
      boolean detachAppender​(Appender<ILoggingEvent> appender)
      Deprecated.
      Remove the appender passed as parameter form the list of appenders.
      boolean detachAppender​(java.lang.String name)
      Deprecated.
      Detach the appender with the name passed as parameter from the list of appenders.
      void error​(java.lang.String msg)
      Deprecated.
      Log a message at the ERROR level.
      void error​(java.lang.String format, java.lang.Object arg)
      Deprecated.
      Log a message at the ERROR level according to the specified format and argument.
      void error​(java.lang.String format, java.lang.Object... argArray)
      Deprecated.
      Log a message at the ERROR level according to the specified format and arguments.
      void error​(java.lang.String format, java.lang.Object arg1, java.lang.Object arg2)
      Deprecated.
      Log a message at the ERROR level according to the specified format and arguments.
      void error​(java.lang.String msg, java.lang.Throwable t)
      Deprecated.
      Log an exception (throwable) at the ERROR level with an accompanying message.
      void error​(Marker marker, java.lang.String msg)
      Deprecated.
      Log a message with the specific Marker at the ERROR level.
      void error​(Marker marker, java.lang.String format, java.lang.Object arg)
      Deprecated.
      This method is similar to Logger.error(String, Object) method except that the marker data is also taken into consideration.
      void error​(Marker marker, java.lang.String format, java.lang.Object... argArray)
      Deprecated.
      This method is similar to Logger.error(String, Object...) method except that the marker data is also taken into consideration.
      void error​(Marker marker, java.lang.String format, java.lang.Object arg1, java.lang.Object arg2)
      Deprecated.
      This method is similar to Logger.error(String, Object, Object) method except that the marker data is also taken into consideration.
      void error​(Marker marker, java.lang.String msg, java.lang.Throwable t)
      Deprecated.
      This method is similar to Logger.error(String, Throwable) method except that the marker data is also taken into consideration.
      Appender<ILoggingEvent> getAppender​(java.lang.String name)
      Deprecated.
      Get an appender by name.
      Level getEffectiveLevel()
      Deprecated.
       
      Level getLevel()
      Deprecated.
       
      LoggerContext getLoggerContext()
      Deprecated.
      Return the context for this logger.
      java.lang.String getName()
      Deprecated.
      Return the name of this Logger instance.
      void info​(java.lang.String msg)
      Deprecated.
      Log a message at the INFO level.
      void info​(java.lang.String format, java.lang.Object arg)
      Deprecated.
      Log a message at the INFO level according to the specified format and argument.
      void info​(java.lang.String format, java.lang.Object... argArray)
      Deprecated.
      Log a message at the INFO level according to the specified format and arguments.
      void info​(java.lang.String format, java.lang.Object arg1, java.lang.Object arg2)
      Deprecated.
      Log a message at the INFO level according to the specified format and arguments.
      void info​(java.lang.String msg, java.lang.Throwable t)
      Deprecated.
      Log an exception (throwable) at the INFO level with an accompanying message.
      void info​(Marker marker, java.lang.String msg)
      Deprecated.
      Log a message with the specific Marker at the INFO level.
      void info​(Marker marker, java.lang.String format, java.lang.Object arg)
      Deprecated.
      This method is similar to Logger.info(String, Object) method except that the marker data is also taken into consideration.
      void info​(Marker marker, java.lang.String format, java.lang.Object... argArray)
      Deprecated.
      This method is similar to Logger.info(String, Object...) method except that the marker data is also taken into consideration.
      void info​(Marker marker, java.lang.String format, java.lang.Object arg1, java.lang.Object arg2)
      Deprecated.
      This method is similar to Logger.info(String, Object, Object) method except that the marker data is also taken into consideration.
      void info​(Marker marker, java.lang.String msg, java.lang.Throwable t)
      Deprecated.
      This method is similar to Logger.info(String, Throwable) method except that the marker data is also taken into consideration.
      boolean isAdditive()
      Deprecated.
       
      boolean isAttached​(Appender<ILoggingEvent> appender)
      Deprecated.
      Returns true if the specified appender is in list of attached attached, false otherwise.
      boolean isDebugEnabled()
      Deprecated.
      Is the logger instance enabled for the DEBUG level?
      boolean isDebugEnabled​(Marker marker)
      Deprecated.
      Similar to Logger.isDebugEnabled() method except that the marker data is also taken into account.
      boolean isEnabledFor​(Level level)
      Deprecated.
       
      boolean isEnabledFor​(Marker marker, Level level)
      Deprecated.
       
      boolean isErrorEnabled()
      Deprecated.
      Is the logger instance enabled for the ERROR level?
      boolean isErrorEnabled​(Marker marker)
      Deprecated.
      Similar to Logger.isErrorEnabled() method except that the marker data is also taken into consideration.
      boolean isInfoEnabled()
      Deprecated.
      Is the logger instance enabled for the INFO level?
      boolean isInfoEnabled​(Marker marker)
      Deprecated.
      Similar to Logger.isInfoEnabled() method except that the marker data is also taken into consideration.
      boolean isTraceEnabled()
      Deprecated.
      Is the logger instance enabled for the TRACE level?
      boolean isTraceEnabled​(Marker marker)
      Deprecated.
      Similar to Logger.isTraceEnabled() method except that the marker data is also taken into account.
      boolean isWarnEnabled()
      Deprecated.
      Is the logger instance enabled for the WARN level?
      boolean isWarnEnabled​(Marker marker)
      Deprecated.
      Similar to Logger.isWarnEnabled() method except that the marker data is also taken into consideration.
      java.util.Iterator<Appender<ILoggingEvent>> iteratorForAppenders()
      Deprecated.
      Get an iterator for appenders contained in the parent object.
      void log​(LoggingEvent slf4jEvent)
      Deprecated.
      Support SLF4J interception during initialization as introduced in SLF4J version 1.7.15
      void log​(Marker marker, java.lang.String fqcn, int levelInt, java.lang.String message, java.lang.Object[] argArray, java.lang.Throwable t)
      Deprecated.
      Printing method with support for location information.
      void setAdditive​(boolean additive)
      Deprecated.
       
      void setLevel​(Level newLevel)
      Deprecated.
       
      java.lang.String toString()
      Deprecated.
       
      void trace​(java.lang.String msg)
      Deprecated.
      Log a message at the TRACE level.
      void trace​(java.lang.String format, java.lang.Object arg)
      Deprecated.
      Log a message at the TRACE level according to the specified format and argument.
      void trace​(java.lang.String format, java.lang.Object... argArray)
      Deprecated.
      Log a message at the TRACE level according to the specified format and arguments.
      void trace​(java.lang.String format, java.lang.Object arg1, java.lang.Object arg2)
      Deprecated.
      Log a message at the TRACE level according to the specified format and arguments.
      void trace​(java.lang.String msg, java.lang.Throwable t)
      Deprecated.
      Log an exception (throwable) at the TRACE level with an accompanying message.
      void trace​(Marker marker, java.lang.String msg)
      Deprecated.
      Log a message with the specific Marker at the TRACE level.
      void trace​(Marker marker, java.lang.String format, java.lang.Object arg)
      Deprecated.
      This method is similar to Logger.trace(String, Object) method except that the marker data is also taken into consideration.
      void trace​(Marker marker, java.lang.String format, java.lang.Object... argArray)
      Deprecated.
      This method is similar to Logger.trace(String, Object...) method except that the marker data is also taken into consideration.
      void trace​(Marker marker, java.lang.String format, java.lang.Object arg1, java.lang.Object arg2)
      Deprecated.
      This method is similar to Logger.trace(String, Object, Object) method except that the marker data is also taken into consideration.
      void trace​(Marker marker, java.lang.String msg, java.lang.Throwable t)
      Deprecated.
      This method is similar to Logger.trace(String, Throwable) method except that the marker data is also taken into consideration.
      void warn​(java.lang.String msg)
      Deprecated.
      Log a message at the WARN level.
      void warn​(java.lang.String format, java.lang.Object arg)
      Deprecated.
      Log a message at the WARN level according to the specified format and argument.
      void warn​(java.lang.String format, java.lang.Object... argArray)
      Deprecated.
      Log a message at the WARN level according to the specified format and arguments.
      void warn​(java.lang.String format, java.lang.Object arg1, java.lang.Object arg2)
      Deprecated.
      Log a message at the WARN level according to the specified format and arguments.
      void warn​(java.lang.String msg, java.lang.Throwable t)
      Deprecated.
      Log an exception (throwable) at the WARN level with an accompanying message.
      void warn​(Marker marker, java.lang.String msg)
      Deprecated.
      Log a message with the specific Marker at the WARN level.
      void warn​(Marker marker, java.lang.String format, java.lang.Object arg)
      Deprecated.
      This method is similar to Logger.warn(String, Object) method except that the marker data is also taken into consideration.
      void warn​(Marker marker, java.lang.String format, java.lang.Object... argArray)
      Deprecated.
      This method is similar to Logger.warn(String, Object...) method except that the marker data is also taken into consideration.
      void warn​(Marker marker, java.lang.String format, java.lang.Object arg1, java.lang.Object arg2)
      Deprecated.
      This method is similar to Logger.warn(String, Object, Object) method except that the marker data is also taken into consideration.
      void warn​(Marker marker, java.lang.String msg, java.lang.Throwable t)
      Deprecated.
      This method is similar to Logger.warn(String, Throwable) method except that the marker data is also taken into consideration.
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Field Detail

      • FQCN

        public static final java.lang.String FQCN
        Deprecated.
        The fully qualified name of this class. Used in gathering caller information.
    • Method Detail

      • getEffectiveLevel

        public Level getEffectiveLevel()
        Deprecated.
      • getLevel

        public Level getLevel()
        Deprecated.
      • getName

        public java.lang.String getName()
        Deprecated.
        Description copied from interface: Logger
        Return the name of this Logger instance.
        Specified by:
        getName in interface Logger
        Returns:
        name of this logger instance
      • setLevel

        public void setLevel​(Level newLevel)
        Deprecated.
      • detachAndStopAllAppenders

        public void detachAndStopAllAppenders()
        Deprecated.
        Remove all previously added appenders from this logger instance.

        This is useful when re-reading configuration information.

        Specified by:
        detachAndStopAllAppenders in interface AppenderAttachable<ILoggingEvent>
      • callAppenders

        public void callAppenders​(ILoggingEvent event)
        Deprecated.
        Invoke all the appenders of this logger.
        Parameters:
        event - The event to log
      • trace

        public void trace​(java.lang.String msg)
        Deprecated.
        Description copied from interface: Logger
        Log a message at the TRACE level.
        Specified by:
        trace in interface Logger
        Parameters:
        msg - the message string to be logged
      • trace

        public void trace​(java.lang.String format,
                          java.lang.Object arg)
        Deprecated.
        Description copied from interface: Logger
        Log a message at the TRACE level according to the specified format and argument.

        This form avoids superfluous object creation when the logger is disabled for the TRACE level.

        Specified by:
        trace in interface Logger
        Parameters:
        format - the format string
        arg - the argument
      • trace

        public void trace​(java.lang.String format,
                          java.lang.Object arg1,
                          java.lang.Object arg2)
        Deprecated.
        Description copied from interface: Logger
        Log a message at the TRACE level according to the specified format and arguments.

        This form avoids superfluous object creation when the logger is disabled for the TRACE level.

        Specified by:
        trace in interface Logger
        Parameters:
        format - the format string
        arg1 - the first argument
        arg2 - the second argument
      • trace

        public void trace​(java.lang.String format,
                          java.lang.Object... argArray)
        Deprecated.
        Description copied from interface: Logger
        Log a message at the TRACE level according to the specified format and arguments.

        This form avoids superfluous string concatenation when the logger is disabled for the TRACE level. However, this variant incurs the hidden (and relatively small) cost of creating an Object[] before invoking the method, even if this logger is disabled for TRACE. The variants taking one and two arguments exist solely in order to avoid this hidden cost.

        Specified by:
        trace in interface Logger
        Parameters:
        format - the format string
        argArray - a list of 3 or more arguments
      • trace

        public void trace​(java.lang.String msg,
                          java.lang.Throwable t)
        Deprecated.
        Description copied from interface: Logger
        Log an exception (throwable) at the TRACE level with an accompanying message.
        Specified by:
        trace in interface Logger
        Parameters:
        msg - the message accompanying the exception
        t - the exception (throwable) to log
      • trace

        public void trace​(Marker marker,
                          java.lang.String msg)
        Deprecated.
        Description copied from interface: Logger
        Log a message with the specific Marker at the TRACE level.
        Specified by:
        trace in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        msg - the message string to be logged
      • trace

        public void trace​(Marker marker,
                          java.lang.String format,
                          java.lang.Object arg)
        Deprecated.
        Description copied from interface: Logger
        This method is similar to Logger.trace(String, Object) method except that the marker data is also taken into consideration.
        Specified by:
        trace in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        format - the format string
        arg - the argument
      • trace

        public void trace​(Marker marker,
                          java.lang.String format,
                          java.lang.Object arg1,
                          java.lang.Object arg2)
        Deprecated.
        Description copied from interface: Logger
        This method is similar to Logger.trace(String, Object, Object) method except that the marker data is also taken into consideration.
        Specified by:
        trace in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        format - the format string
        arg1 - the first argument
        arg2 - the second argument
      • trace

        public void trace​(Marker marker,
                          java.lang.String format,
                          java.lang.Object... argArray)
        Deprecated.
        Description copied from interface: Logger
        This method is similar to Logger.trace(String, Object...) method except that the marker data is also taken into consideration.
        Specified by:
        trace in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        format - the format string
        argArray - an array of arguments
      • trace

        public void trace​(Marker marker,
                          java.lang.String msg,
                          java.lang.Throwable t)
        Deprecated.
        Description copied from interface: Logger
        This method is similar to Logger.trace(String, Throwable) method except that the marker data is also taken into consideration.
        Specified by:
        trace in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        msg - the message accompanying the exception
        t - the exception (throwable) to log
      • isDebugEnabled

        public boolean isDebugEnabled()
        Deprecated.
        Description copied from interface: Logger
        Is the logger instance enabled for the DEBUG level?
        Specified by:
        isDebugEnabled in interface Logger
        Returns:
        True if this Logger is enabled for the DEBUG level, false otherwise.
      • isDebugEnabled

        public boolean isDebugEnabled​(Marker marker)
        Deprecated.
        Description copied from interface: Logger
        Similar to Logger.isDebugEnabled() method except that the marker data is also taken into account.
        Specified by:
        isDebugEnabled in interface Logger
        Parameters:
        marker - The marker data to take into consideration
        Returns:
        True if this Logger is enabled for the DEBUG level, false otherwise.
      • debug

        public void debug​(java.lang.String msg)
        Deprecated.
        Description copied from interface: Logger
        Log a message at the DEBUG level.
        Specified by:
        debug in interface Logger
        Parameters:
        msg - the message string to be logged
      • debug

        public void debug​(java.lang.String format,
                          java.lang.Object arg)
        Deprecated.
        Description copied from interface: Logger
        Log a message at the DEBUG level according to the specified format and argument.

        This form avoids superfluous object creation when the logger is disabled for the DEBUG level.

        Specified by:
        debug in interface Logger
        Parameters:
        format - the format string
        arg - the argument
      • debug

        public void debug​(java.lang.String format,
                          java.lang.Object arg1,
                          java.lang.Object arg2)
        Deprecated.
        Description copied from interface: Logger
        Log a message at the DEBUG level according to the specified format and arguments.

        This form avoids superfluous object creation when the logger is disabled for the DEBUG level.

        Specified by:
        debug in interface Logger
        Parameters:
        format - the format string
        arg1 - the first argument
        arg2 - the second argument
      • debug

        public void debug​(java.lang.String format,
                          java.lang.Object... argArray)
        Deprecated.
        Description copied from interface: Logger
        Log a message at the DEBUG level according to the specified format and arguments.

        This form avoids superfluous string concatenation when the logger is disabled for the DEBUG level. However, this variant incurs the hidden (and relatively small) cost of creating an Object[] before invoking the method, even if this logger is disabled for DEBUG. The variants taking one and two arguments exist solely in order to avoid this hidden cost.

        Specified by:
        debug in interface Logger
        Parameters:
        format - the format string
        argArray - a list of 3 or more arguments
      • debug

        public void debug​(java.lang.String msg,
                          java.lang.Throwable t)
        Deprecated.
        Description copied from interface: Logger
        Log an exception (throwable) at the DEBUG level with an accompanying message.
        Specified by:
        debug in interface Logger
        Parameters:
        msg - the message accompanying the exception
        t - the exception (throwable) to log
      • debug

        public void debug​(Marker marker,
                          java.lang.String msg)
        Deprecated.
        Description copied from interface: Logger
        Log 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
        msg - the message string to be logged
      • debug

        public void debug​(Marker marker,
                          java.lang.String format,
                          java.lang.Object arg)
        Deprecated.
        Description copied from interface: Logger
        This method is similar to Logger.debug(String, Object) method except that the marker data is also taken into consideration.
        Specified by:
        debug in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        format - the format string
        arg - the argument
      • debug

        public void debug​(Marker marker,
                          java.lang.String format,
                          java.lang.Object arg1,
                          java.lang.Object arg2)
        Deprecated.
        Description copied from interface: Logger
        This method is similar to Logger.debug(String, Object, Object) method except that the marker data is also taken into consideration.
        Specified by:
        debug in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        format - the format string
        arg1 - the first argument
        arg2 - the second argument
      • debug

        public void debug​(Marker marker,
                          java.lang.String format,
                          java.lang.Object... argArray)
        Deprecated.
        Description copied from interface: Logger
        This method is similar to Logger.debug(String, Object...) method except that the marker data is also taken into consideration.
        Specified by:
        debug in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        format - the format string
        argArray - a list of 3 or more arguments
      • debug

        public void debug​(Marker marker,
                          java.lang.String msg,
                          java.lang.Throwable t)
        Deprecated.
        Description copied from interface: Logger
        This method is similar to Logger.debug(String, Throwable) method except that the marker data is also taken into consideration.
        Specified by:
        debug in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        msg - the message accompanying the exception
        t - the exception (throwable) to log
      • error

        public void error​(java.lang.String msg)
        Deprecated.
        Description copied from interface: Logger
        Log a message at the ERROR level.
        Specified by:
        error in interface Logger
        Parameters:
        msg - the message string to be logged
      • error

        public void error​(java.lang.String format,
                          java.lang.Object arg)
        Deprecated.
        Description copied from interface: Logger
        Log a message at the ERROR level according to the specified format and argument.

        This form avoids superfluous object creation when the logger is disabled for the ERROR level.

        Specified by:
        error in interface Logger
        Parameters:
        format - the format string
        arg - the argument
      • error

        public void error​(java.lang.String format,
                          java.lang.Object arg1,
                          java.lang.Object arg2)
        Deprecated.
        Description copied from interface: Logger
        Log a message at the ERROR level according to the specified format and arguments.

        This form avoids superfluous object creation when the logger is disabled for the ERROR level.

        Specified by:
        error in interface Logger
        Parameters:
        format - the format string
        arg1 - the first argument
        arg2 - the second argument
      • error

        public void error​(java.lang.String format,
                          java.lang.Object... argArray)
        Deprecated.
        Description copied from interface: Logger
        Log a message at the ERROR level according to the specified format and arguments.

        This form avoids superfluous string concatenation when the logger is disabled for the ERROR level. However, this variant incurs the hidden (and relatively small) cost of creating an Object[] before invoking the method, even if this logger is disabled for ERROR. The variants taking one and two arguments exist solely in order to avoid this hidden cost.

        Specified by:
        error in interface Logger
        Parameters:
        format - the format string
        argArray - a list of 3 or more arguments
      • error

        public void error​(java.lang.String msg,
                          java.lang.Throwable t)
        Deprecated.
        Description copied from interface: Logger
        Log an exception (throwable) at the ERROR level with an accompanying message.
        Specified by:
        error in interface Logger
        Parameters:
        msg - the message accompanying the exception
        t - the exception (throwable) to log
      • error

        public void error​(Marker marker,
                          java.lang.String msg)
        Deprecated.
        Description copied from interface: Logger
        Log a message with the specific Marker at the ERROR level.
        Specified by:
        error in interface Logger
        Parameters:
        marker - The marker specific to this log statement
        msg - the message string to be logged
      • error

        public void error​(Marker marker,
                          java.lang.String format,
                          java.lang.Object arg)
        Deprecated.
        Description copied from interface: Logger
        This method is similar to Logger.error(String, Object) method except that the marker data is also taken into consideration.
        Specified by:
        error in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        format - the format string
        arg - the argument
      • error

        public void error​(Marker marker,
                          java.lang.String format,
                          java.lang.Object arg1,
                          java.lang.Object arg2)
        Deprecated.
        Description copied from interface: Logger
        This method is similar to Logger.error(String, Object, Object) method except that the marker data is also taken into consideration.
        Specified by:
        error in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        format - the format string
        arg1 - the first argument
        arg2 - the second argument
      • error

        public void error​(Marker marker,
                          java.lang.String format,
                          java.lang.Object... argArray)
        Deprecated.
        Description copied from interface: Logger
        This method is similar to Logger.error(String, Object...) method except that the marker data is also taken into consideration.
        Specified by:
        error in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        format - the format string
        argArray - a list of 3 or more arguments
      • error

        public void error​(Marker marker,
                          java.lang.String msg,
                          java.lang.Throwable t)
        Deprecated.
        Description copied from interface: Logger
        This method is similar to Logger.error(String, Throwable) method except that the marker data is also taken into consideration.
        Specified by:
        error in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        msg - the message accompanying the exception
        t - the exception (throwable) to log
      • isInfoEnabled

        public boolean isInfoEnabled()
        Deprecated.
        Description copied from interface: Logger
        Is the logger instance enabled for the INFO level?
        Specified by:
        isInfoEnabled in interface Logger
        Returns:
        True if this Logger is enabled for the INFO level, false otherwise.
      • isInfoEnabled

        public boolean isInfoEnabled​(Marker marker)
        Deprecated.
        Description copied from interface: Logger
        Similar to Logger.isInfoEnabled() method except that the marker data is also taken into consideration.
        Specified by:
        isInfoEnabled in interface Logger
        Parameters:
        marker - The marker data to take into consideration
        Returns:
        true if this logger is warn enabled, false otherwise
      • info

        public void info​(java.lang.String msg)
        Deprecated.
        Description copied from interface: Logger
        Log a message at the INFO level.
        Specified by:
        info in interface Logger
        Parameters:
        msg - the message string to be logged
      • info

        public void info​(java.lang.String format,
                         java.lang.Object arg)
        Deprecated.
        Description copied from interface: Logger
        Log a message at the INFO level according to the specified format and argument.

        This form avoids superfluous object creation when the logger is disabled for the INFO level.

        Specified by:
        info in interface Logger
        Parameters:
        format - the format string
        arg - the argument
      • info

        public void info​(java.lang.String format,
                         java.lang.Object arg1,
                         java.lang.Object arg2)
        Deprecated.
        Description copied from interface: Logger
        Log a message at the INFO level according to the specified format and arguments.

        This form avoids superfluous object creation when the logger is disabled for the INFO level.

        Specified by:
        info in interface Logger
        Parameters:
        format - the format string
        arg1 - the first argument
        arg2 - the second argument
      • info

        public void info​(java.lang.String format,
                         java.lang.Object... argArray)
        Deprecated.
        Description copied from interface: Logger
        Log a message at the INFO level according to the specified format and arguments.

        This form avoids superfluous string concatenation when the logger is disabled for the INFO level. However, this variant incurs the hidden (and relatively small) cost of creating an Object[] before invoking the method, even if this logger is disabled for INFO. The variants taking one and two arguments exist solely in order to avoid this hidden cost.

        Specified by:
        info in interface Logger
        Parameters:
        format - the format string
        argArray - a list of 3 or more arguments
      • info

        public void info​(java.lang.String msg,
                         java.lang.Throwable t)
        Deprecated.
        Description copied from interface: Logger
        Log an exception (throwable) at the INFO level with an accompanying message.
        Specified by:
        info in interface Logger
        Parameters:
        msg - the message accompanying the exception
        t - the exception (throwable) to log
      • info

        public void info​(Marker marker,
                         java.lang.String msg)
        Deprecated.
        Description copied from interface: Logger
        Log a message with the specific Marker at the INFO level.
        Specified by:
        info in interface Logger
        Parameters:
        marker - The marker specific to this log statement
        msg - the message string to be logged
      • info

        public void info​(Marker marker,
                         java.lang.String format,
                         java.lang.Object arg)
        Deprecated.
        Description copied from interface: Logger
        This method is similar to Logger.info(String, Object) method except that the marker data is also taken into consideration.
        Specified by:
        info in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        format - the format string
        arg - the argument
      • info

        public void info​(Marker marker,
                         java.lang.String format,
                         java.lang.Object arg1,
                         java.lang.Object arg2)
        Deprecated.
        Description copied from interface: Logger
        This method is similar to Logger.info(String, Object, Object) method except that the marker data is also taken into consideration.
        Specified by:
        info in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        format - the format string
        arg1 - the first argument
        arg2 - the second argument
      • info

        public void info​(Marker marker,
                         java.lang.String format,
                         java.lang.Object... argArray)
        Deprecated.
        Description copied from interface: Logger
        This method is similar to Logger.info(String, Object...) method except that the marker data is also taken into consideration.
        Specified by:
        info in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        format - the format string
        argArray - a list of 3 or more arguments
      • info

        public void info​(Marker marker,
                         java.lang.String msg,
                         java.lang.Throwable t)
        Deprecated.
        Description copied from interface: Logger
        This method is similar to Logger.info(String, Throwable) method except that the marker data is also taken into consideration.
        Specified by:
        info in interface Logger
        Parameters:
        marker - the marker data for this log statement
        msg - the message accompanying the exception
        t - the exception (throwable) to log
      • isTraceEnabled

        public boolean isTraceEnabled()
        Deprecated.
        Description copied from interface: Logger
        Is the logger instance enabled for the TRACE level?
        Specified by:
        isTraceEnabled in interface Logger
        Returns:
        True if this Logger is enabled for the TRACE level, false otherwise.
      • isTraceEnabled

        public boolean isTraceEnabled​(Marker marker)
        Deprecated.
        Description copied from interface: Logger
        Similar to Logger.isTraceEnabled() method except that the marker data is also taken into account.
        Specified by:
        isTraceEnabled in interface Logger
        Parameters:
        marker - The marker data to take into consideration
        Returns:
        True if this Logger is enabled for the TRACE level, false otherwise.
      • isErrorEnabled

        public boolean isErrorEnabled()
        Deprecated.
        Description copied from interface: Logger
        Is the logger instance enabled for the ERROR level?
        Specified by:
        isErrorEnabled in interface Logger
        Returns:
        True if this Logger is enabled for the ERROR level, false otherwise.
      • isErrorEnabled

        public boolean isErrorEnabled​(Marker marker)
        Deprecated.
        Description copied from interface: Logger
        Similar to Logger.isErrorEnabled() method except that the marker data is also taken into consideration.
        Specified by:
        isErrorEnabled in interface Logger
        Parameters:
        marker - The marker data to take into consideration
        Returns:
        True if this Logger is enabled for the ERROR level, false otherwise.
      • isWarnEnabled

        public boolean isWarnEnabled()
        Deprecated.
        Description copied from interface: Logger
        Is the logger instance enabled for the WARN level?
        Specified by:
        isWarnEnabled in interface Logger
        Returns:
        True if this Logger is enabled for the WARN level, false otherwise.
      • isWarnEnabled

        public boolean isWarnEnabled​(Marker marker)
        Deprecated.
        Description copied from interface: Logger
        Similar to Logger.isWarnEnabled() method except that the marker data is also taken into consideration.
        Specified by:
        isWarnEnabled in interface Logger
        Parameters:
        marker - The marker data to take into consideration
        Returns:
        True if this Logger is enabled for the WARN level, false otherwise.
      • isEnabledFor

        public boolean isEnabledFor​(Marker marker,
                                    Level level)
        Deprecated.
      • isEnabledFor

        public boolean isEnabledFor​(Level level)
        Deprecated.
      • warn

        public void warn​(java.lang.String msg)
        Deprecated.
        Description copied from interface: Logger
        Log a message at the WARN level.
        Specified by:
        warn in interface Logger
        Parameters:
        msg - the message string to be logged
      • warn

        public void warn​(java.lang.String msg,
                         java.lang.Throwable t)
        Deprecated.
        Description copied from interface: Logger
        Log an exception (throwable) at the WARN level with an accompanying message.
        Specified by:
        warn in interface Logger
        Parameters:
        msg - the message accompanying the exception
        t - the exception (throwable) to log
      • warn

        public void warn​(java.lang.String format,
                         java.lang.Object arg)
        Deprecated.
        Description copied from interface: Logger
        Log a message at the WARN level according to the specified format and argument.

        This form avoids superfluous object creation when the logger is disabled for the WARN level.

        Specified by:
        warn in interface Logger
        Parameters:
        format - the format string
        arg - the argument
      • warn

        public void warn​(java.lang.String format,
                         java.lang.Object arg1,
                         java.lang.Object arg2)
        Deprecated.
        Description copied from interface: Logger
        Log a message at the WARN level according to the specified format and arguments.

        This form avoids superfluous object creation when the logger is disabled for the WARN level.

        Specified by:
        warn in interface Logger
        Parameters:
        format - the format string
        arg1 - the first argument
        arg2 - the second argument
      • warn

        public void warn​(java.lang.String format,
                         java.lang.Object... argArray)
        Deprecated.
        Description copied from interface: Logger
        Log a message at the WARN level according to the specified format and arguments.

        This form avoids superfluous string concatenation when the logger is disabled for the WARN level. However, this variant incurs the hidden (and relatively small) cost of creating an Object[] before invoking the method, even if this logger is disabled for WARN. The variants taking one and two arguments exist solely in order to avoid this hidden cost.

        Specified by:
        warn in interface Logger
        Parameters:
        format - the format string
        argArray - a list of 3 or more arguments
      • warn

        public void warn​(Marker marker,
                         java.lang.String msg)
        Deprecated.
        Description copied from interface: Logger
        Log a message with the specific Marker at the WARN level.
        Specified by:
        warn in interface Logger
        Parameters:
        marker - The marker specific to this log statement
        msg - the message string to be logged
      • warn

        public void warn​(Marker marker,
                         java.lang.String format,
                         java.lang.Object arg)
        Deprecated.
        Description copied from interface: Logger
        This method is similar to Logger.warn(String, Object) method except that the marker data is also taken into consideration.
        Specified by:
        warn in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        format - the format string
        arg - the argument
      • warn

        public void warn​(Marker marker,
                         java.lang.String format,
                         java.lang.Object... argArray)
        Deprecated.
        Description copied from interface: Logger
        This method is similar to Logger.warn(String, Object...) method except that the marker data is also taken into consideration.
        Specified by:
        warn in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        format - the format string
        argArray - a list of 3 or more arguments
      • warn

        public void warn​(Marker marker,
                         java.lang.String format,
                         java.lang.Object arg1,
                         java.lang.Object arg2)
        Deprecated.
        Description copied from interface: Logger
        This method is similar to Logger.warn(String, Object, Object) method except that the marker data is also taken into consideration.
        Specified by:
        warn in interface Logger
        Parameters:
        marker - the marker data specific to this log statement
        format - the format string
        arg1 - the first argument
        arg2 - the second argument
      • warn

        public void warn​(Marker marker,
                         java.lang.String msg,
                         java.lang.Throwable t)
        Deprecated.
        Description copied from interface: Logger
        This method is similar to Logger.warn(String, Throwable) method except that the marker data is also taken into consideration.
        Specified by:
        warn in interface Logger
        Parameters:
        marker - the marker data for this log statement
        msg - the message accompanying the exception
        t - the exception (throwable) to log
      • isAdditive

        public boolean isAdditive()
        Deprecated.
      • setAdditive

        public void setAdditive​(boolean additive)
        Deprecated.
      • toString

        public java.lang.String toString()
        Deprecated.
        Overrides:
        toString in class java.lang.Object
      • getLoggerContext

        public LoggerContext getLoggerContext()
        Deprecated.
        Return the context for this logger.
        Returns:
        the context
      • log

        public void log​(Marker marker,
                        java.lang.String fqcn,
                        int levelInt,
                        java.lang.String message,
                        java.lang.Object[] argArray,
                        java.lang.Throwable t)
        Deprecated.
        Description copied from interface: LocationAwareLogger
        Printing method with support for location information.
        Specified by:
        log in interface LocationAwareLogger
        Parameters:
        marker - The marker to be used for this event, may be null.
        fqcn - The fully qualified class name of the logger instance, typically the logger class, logger bridge or a logger wrapper.
        levelInt - One of the level integers defined in this interface
        message - The message for the log event
        t - Throwable associated with the log event, may be null.
      • log

        public void log​(LoggingEvent slf4jEvent)
        Deprecated.
        Support SLF4J interception during initialization as introduced in SLF4J version 1.7.15
        Parameters:
        slf4jEvent -
        Since:
        1.1.4