Class MarkerIgnoringBase

    • Constructor Detail

      • MarkerIgnoringBase

        public MarkerIgnoringBase()
    • Method Detail

      • isTraceEnabled

        public boolean isTraceEnabled​(Marker marker)
        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.
      • trace

        public void trace​(Marker marker,
                          java.lang.String msg)
        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)
        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)
        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... arguments)
        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
        arguments - an array of arguments
      • trace

        public void trace​(Marker marker,
                          java.lang.String msg,
                          java.lang.Throwable t)
        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​(Marker marker)
        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​(Marker marker,
                          java.lang.String msg)
        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)
        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)
        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... arguments)
        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
        arguments - a list of 3 or more arguments
      • debug

        public void debug​(Marker marker,
                          java.lang.String msg,
                          java.lang.Throwable t)
        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
      • isInfoEnabled

        public boolean isInfoEnabled​(Marker marker)
        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​(Marker marker,
                         java.lang.String msg)
        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)
        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)
        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... arguments)
        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
        arguments - a list of 3 or more arguments
      • info

        public void info​(Marker marker,
                         java.lang.String msg,
                         java.lang.Throwable t)
        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
      • isWarnEnabled

        public boolean isWarnEnabled​(Marker marker)
        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.
      • warn

        public void warn​(Marker marker,
                         java.lang.String msg)
        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)
        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 arg1,
                         java.lang.Object arg2)
        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 format,
                         java.lang.Object... arguments)
        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
        arguments - a list of 3 or more arguments
      • warn

        public void warn​(Marker marker,
                         java.lang.String msg,
                         java.lang.Throwable t)
        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
      • isErrorEnabled

        public boolean isErrorEnabled​(Marker marker)
        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.
      • error

        public void error​(Marker marker,
                          java.lang.String msg)
        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)
        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)
        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... arguments)
        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
        arguments - a list of 3 or more arguments
      • error

        public void error​(Marker marker,
                          java.lang.String msg,
                          java.lang.Throwable t)
        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
      • toString

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