Class Logger
- java.lang.Object
-
- ch.qos.logback.classic.Logger
-
- All Implemented Interfaces:
AppenderAttachable<ILoggingEvent>,java.io.Serializable,Logger,LocationAwareLogger
@Deprecated(since="2022-01-27") public final class Logger extends java.lang.Object implements Logger, LocationAwareLogger, AppenderAttachable<ILoggingEvent>, java.io.Serializable
Deprecated.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringFQCNDeprecated.The fully qualified name of this class.-
Fields inherited from interface org.slf4j.spi.LocationAwareLogger
DEBUG_INT, ERROR_INT, INFO_INT, TRACE_INT, WARN_INT
-
Fields inherited from interface org.slf4j.Logger
ROOT_LOGGER_NAME
-
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voidaddAppender(Appender<ILoggingEvent> newAppender)Deprecated.Add an appender.voidcallAppenders(ILoggingEvent event)Deprecated.Invoke all the appenders of this logger.voiddebug(java.lang.String msg)Deprecated.Log a message at the DEBUG level.voiddebug(java.lang.String format, java.lang.Object arg)Deprecated.Log a message at the DEBUG level according to the specified format and argument.voiddebug(java.lang.String format, java.lang.Object... argArray)Deprecated.Log a message at the DEBUG level according to the specified format and arguments.voiddebug(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.voiddebug(java.lang.String msg, java.lang.Throwable t)Deprecated.Log an exception (throwable) at the DEBUG level with an accompanying message.voiddebug(Marker marker, java.lang.String msg)Deprecated.Log a message with the specific Marker at the DEBUG level.voiddebug(Marker marker, java.lang.String format, java.lang.Object arg)Deprecated.This method is similar toLogger.debug(String, Object)method except that the marker data is also taken into consideration.voiddebug(Marker marker, java.lang.String format, java.lang.Object... argArray)Deprecated.This method is similar toLogger.debug(String, Object...)method except that the marker data is also taken into consideration.voiddebug(Marker marker, java.lang.String format, java.lang.Object arg1, java.lang.Object arg2)Deprecated.This method is similar toLogger.debug(String, Object, Object)method except that the marker data is also taken into consideration.voiddebug(Marker marker, java.lang.String msg, java.lang.Throwable t)Deprecated.This method is similar toLogger.debug(String, Throwable)method except that the marker data is also taken into consideration.voiddetachAndStopAllAppenders()Deprecated.Remove all previously added appenders from this logger instance.booleandetachAppender(Appender<ILoggingEvent> appender)Deprecated.Remove the appender passed as parameter form the list of appenders.booleandetachAppender(java.lang.String name)Deprecated.Detach the appender with the name passed as parameter from the list of appenders.voiderror(java.lang.String msg)Deprecated.Log a message at the ERROR level.voiderror(java.lang.String format, java.lang.Object arg)Deprecated.Log a message at the ERROR level according to the specified format and argument.voiderror(java.lang.String format, java.lang.Object... argArray)Deprecated.Log a message at the ERROR level according to the specified format and arguments.voiderror(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.voiderror(java.lang.String msg, java.lang.Throwable t)Deprecated.Log an exception (throwable) at the ERROR level with an accompanying message.voiderror(Marker marker, java.lang.String msg)Deprecated.Log a message with the specific Marker at the ERROR level.voiderror(Marker marker, java.lang.String format, java.lang.Object arg)Deprecated.This method is similar toLogger.error(String, Object)method except that the marker data is also taken into consideration.voiderror(Marker marker, java.lang.String format, java.lang.Object... argArray)Deprecated.This method is similar toLogger.error(String, Object...)method except that the marker data is also taken into consideration.voiderror(Marker marker, java.lang.String format, java.lang.Object arg1, java.lang.Object arg2)Deprecated.This method is similar toLogger.error(String, Object, Object)method except that the marker data is also taken into consideration.voiderror(Marker marker, java.lang.String msg, java.lang.Throwable t)Deprecated.This method is similar toLogger.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.LevelgetEffectiveLevel()Deprecated.LevelgetLevel()Deprecated.LoggerContextgetLoggerContext()Deprecated.Return the context for this logger.java.lang.StringgetName()Deprecated.Return the name of thisLoggerinstance.voidinfo(java.lang.String msg)Deprecated.Log a message at the INFO level.voidinfo(java.lang.String format, java.lang.Object arg)Deprecated.Log a message at the INFO level according to the specified format and argument.voidinfo(java.lang.String format, java.lang.Object... argArray)Deprecated.Log a message at the INFO level according to the specified format and arguments.voidinfo(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.voidinfo(java.lang.String msg, java.lang.Throwable t)Deprecated.Log an exception (throwable) at the INFO level with an accompanying message.voidinfo(Marker marker, java.lang.String msg)Deprecated.Log a message with the specific Marker at the INFO level.voidinfo(Marker marker, java.lang.String format, java.lang.Object arg)Deprecated.This method is similar toLogger.info(String, Object)method except that the marker data is also taken into consideration.voidinfo(Marker marker, java.lang.String format, java.lang.Object... argArray)Deprecated.This method is similar toLogger.info(String, Object...)method except that the marker data is also taken into consideration.voidinfo(Marker marker, java.lang.String format, java.lang.Object arg1, java.lang.Object arg2)Deprecated.This method is similar toLogger.info(String, Object, Object)method except that the marker data is also taken into consideration.voidinfo(Marker marker, java.lang.String msg, java.lang.Throwable t)Deprecated.This method is similar toLogger.info(String, Throwable)method except that the marker data is also taken into consideration.booleanisAdditive()Deprecated.booleanisAttached(Appender<ILoggingEvent> appender)Deprecated.Returnstrueif the specified appender is in list of attached attached,falseotherwise.booleanisDebugEnabled()Deprecated.Is the logger instance enabled for the DEBUG level?booleanisDebugEnabled(Marker marker)Deprecated.Similar toLogger.isDebugEnabled()method except that the marker data is also taken into account.booleanisEnabledFor(Level level)Deprecated.booleanisEnabledFor(Marker marker, Level level)Deprecated.booleanisErrorEnabled()Deprecated.Is the logger instance enabled for the ERROR level?booleanisErrorEnabled(Marker marker)Deprecated.Similar toLogger.isErrorEnabled()method except that the marker data is also taken into consideration.booleanisInfoEnabled()Deprecated.Is the logger instance enabled for the INFO level?booleanisInfoEnabled(Marker marker)Deprecated.Similar toLogger.isInfoEnabled()method except that the marker data is also taken into consideration.booleanisTraceEnabled()Deprecated.Is the logger instance enabled for the TRACE level?booleanisTraceEnabled(Marker marker)Deprecated.Similar toLogger.isTraceEnabled()method except that the marker data is also taken into account.booleanisWarnEnabled()Deprecated.Is the logger instance enabled for the WARN level?booleanisWarnEnabled(Marker marker)Deprecated.Similar toLogger.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.voidlog(LoggingEvent slf4jEvent)Deprecated.Support SLF4J interception during initialization as introduced in SLF4J version 1.7.15voidlog(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.voidsetAdditive(boolean additive)Deprecated.voidsetLevel(Level newLevel)Deprecated.java.lang.StringtoString()Deprecated.voidtrace(java.lang.String msg)Deprecated.Log a message at the TRACE level.voidtrace(java.lang.String format, java.lang.Object arg)Deprecated.Log a message at the TRACE level according to the specified format and argument.voidtrace(java.lang.String format, java.lang.Object... argArray)Deprecated.Log a message at the TRACE level according to the specified format and arguments.voidtrace(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.voidtrace(java.lang.String msg, java.lang.Throwable t)Deprecated.Log an exception (throwable) at the TRACE level with an accompanying message.voidtrace(Marker marker, java.lang.String msg)Deprecated.Log a message with the specific Marker at the TRACE level.voidtrace(Marker marker, java.lang.String format, java.lang.Object arg)Deprecated.This method is similar toLogger.trace(String, Object)method except that the marker data is also taken into consideration.voidtrace(Marker marker, java.lang.String format, java.lang.Object... argArray)Deprecated.This method is similar toLogger.trace(String, Object...)method except that the marker data is also taken into consideration.voidtrace(Marker marker, java.lang.String format, java.lang.Object arg1, java.lang.Object arg2)Deprecated.This method is similar toLogger.trace(String, Object, Object)method except that the marker data is also taken into consideration.voidtrace(Marker marker, java.lang.String msg, java.lang.Throwable t)Deprecated.This method is similar toLogger.trace(String, Throwable)method except that the marker data is also taken into consideration.voidwarn(java.lang.String msg)Deprecated.Log a message at the WARN level.voidwarn(java.lang.String format, java.lang.Object arg)Deprecated.Log a message at the WARN level according to the specified format and argument.voidwarn(java.lang.String format, java.lang.Object... argArray)Deprecated.Log a message at the WARN level according to the specified format and arguments.voidwarn(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.voidwarn(java.lang.String msg, java.lang.Throwable t)Deprecated.Log an exception (throwable) at the WARN level with an accompanying message.voidwarn(Marker marker, java.lang.String msg)Deprecated.Log a message with the specific Marker at the WARN level.voidwarn(Marker marker, java.lang.String format, java.lang.Object arg)Deprecated.This method is similar toLogger.warn(String, Object)method except that the marker data is also taken into consideration.voidwarn(Marker marker, java.lang.String format, java.lang.Object... argArray)Deprecated.This method is similar toLogger.warn(String, Object...)method except that the marker data is also taken into consideration.voidwarn(Marker marker, java.lang.String format, java.lang.Object arg1, java.lang.Object arg2)Deprecated.This method is similar toLogger.warn(String, Object, Object)method except that the marker data is also taken into consideration.voidwarn(Marker marker, java.lang.String msg, java.lang.Throwable t)Deprecated.This method is similar toLogger.warn(String, Throwable)method except that the marker data is also taken into consideration.
-
-
-
Method Detail
-
getEffectiveLevel
public Level getEffectiveLevel()
Deprecated.
-
getLevel
public Level getLevel()
Deprecated.
-
getName
public java.lang.String getName()
Deprecated.Description copied from interface:LoggerReturn the name of thisLoggerinstance.
-
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:
detachAndStopAllAppendersin interfaceAppenderAttachable<ILoggingEvent>
-
detachAppender
public boolean detachAppender(java.lang.String name)
Deprecated.Description copied from interface:AppenderAttachableDetach the appender with the name passed as parameter from the list of appenders.- Specified by:
detachAppenderin interfaceAppenderAttachable<ILoggingEvent>
-
addAppender
public void addAppender(Appender<ILoggingEvent> newAppender)
Deprecated.Description copied from interface:AppenderAttachableAdd an appender.- Specified by:
addAppenderin interfaceAppenderAttachable<ILoggingEvent>
-
isAttached
public boolean isAttached(Appender<ILoggingEvent> appender)
Deprecated.Description copied from interface:AppenderAttachableReturnstrueif the specified appender is in list of attached attached,falseotherwise.- Specified by:
isAttachedin interfaceAppenderAttachable<ILoggingEvent>
-
iteratorForAppenders
public java.util.Iterator<Appender<ILoggingEvent>> iteratorForAppenders()
Deprecated.Description copied from interface:AppenderAttachableGet an iterator for appenders contained in the parent object.- Specified by:
iteratorForAppendersin interfaceAppenderAttachable<ILoggingEvent>
-
getAppender
public Appender<ILoggingEvent> getAppender(java.lang.String name)
Deprecated.Description copied from interface:AppenderAttachableGet an appender by name.- Specified by:
getAppenderin interfaceAppenderAttachable<ILoggingEvent>
-
callAppenders
public void callAppenders(ILoggingEvent event)
Deprecated.Invoke all the appenders of this logger.- Parameters:
event- The event to log
-
detachAppender
public boolean detachAppender(Appender<ILoggingEvent> appender)
Deprecated.Remove the appender passed as parameter form the list of appenders.- Specified by:
detachAppenderin interfaceAppenderAttachable<ILoggingEvent>
-
trace
public void trace(java.lang.String msg)
Deprecated.Description copied from interface:LoggerLog a message at the TRACE level.
-
trace
public void trace(java.lang.String format, java.lang.Object arg)Deprecated.Description copied from interface:LoggerLog 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.
-
trace
public void trace(java.lang.String format, java.lang.Object arg1, java.lang.Object arg2)Deprecated.Description copied from interface:LoggerLog 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.
-
trace
public void trace(java.lang.String format, java.lang.Object... argArray)Deprecated.Description copied from interface:LoggerLog 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 takingoneandtwoarguments exist solely in order to avoid this hidden cost.
-
trace
public void trace(java.lang.String msg, java.lang.Throwable t)Deprecated.Description copied from interface:LoggerLog an exception (throwable) at the TRACE level with an accompanying message.
-
trace
public void trace(Marker marker, java.lang.String msg)
Deprecated.Description copied from interface:LoggerLog a message with the specific Marker at the TRACE level.
-
trace
public void trace(Marker marker, java.lang.String format, java.lang.Object arg)
Deprecated.Description copied from interface:LoggerThis method is similar toLogger.trace(String, Object)method except that the marker data is also taken into consideration.
-
trace
public void trace(Marker marker, java.lang.String format, java.lang.Object arg1, java.lang.Object arg2)
Deprecated.Description copied from interface:LoggerThis method is similar toLogger.trace(String, Object, Object)method except that the marker data is also taken into consideration.
-
trace
public void trace(Marker marker, java.lang.String format, java.lang.Object... argArray)
Deprecated.Description copied from interface:LoggerThis method is similar toLogger.trace(String, Object...)method except that the marker data is also taken into consideration.
-
trace
public void trace(Marker marker, java.lang.String msg, java.lang.Throwable t)
Deprecated.Description copied from interface:LoggerThis method is similar toLogger.trace(String, Throwable)method except that the marker data is also taken into consideration.
-
isDebugEnabled
public boolean isDebugEnabled()
Deprecated.Description copied from interface:LoggerIs the logger instance enabled for the DEBUG level?- Specified by:
isDebugEnabledin interfaceLogger- Returns:
- True if this Logger is enabled for the DEBUG level, false otherwise.
-
isDebugEnabled
public boolean isDebugEnabled(Marker marker)
Deprecated.Description copied from interface:LoggerSimilar toLogger.isDebugEnabled()method except that the marker data is also taken into account.- Specified by:
isDebugEnabledin interfaceLogger- 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:LoggerLog a message at the DEBUG level.
-
debug
public void debug(java.lang.String format, java.lang.Object arg)Deprecated.Description copied from interface:LoggerLog 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.
-
debug
public void debug(java.lang.String format, java.lang.Object arg1, java.lang.Object arg2)Deprecated.Description copied from interface:LoggerLog 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.
-
debug
public void debug(java.lang.String format, java.lang.Object... argArray)Deprecated.Description copied from interface:LoggerLog 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 takingoneandtwoarguments exist solely in order to avoid this hidden cost.
-
debug
public void debug(java.lang.String msg, java.lang.Throwable t)Deprecated.Description copied from interface:LoggerLog an exception (throwable) at the DEBUG level with an accompanying message.
-
debug
public void debug(Marker marker, java.lang.String msg)
Deprecated.Description copied from interface:LoggerLog a message with the specific Marker at the DEBUG level.
-
debug
public void debug(Marker marker, java.lang.String format, java.lang.Object arg)
Deprecated.Description copied from interface:LoggerThis method is similar toLogger.debug(String, Object)method except that the marker data is also taken into consideration.
-
debug
public void debug(Marker marker, java.lang.String format, java.lang.Object arg1, java.lang.Object arg2)
Deprecated.Description copied from interface:LoggerThis method is similar toLogger.debug(String, Object, Object)method except that the marker data is also taken into consideration.
-
debug
public void debug(Marker marker, java.lang.String format, java.lang.Object... argArray)
Deprecated.Description copied from interface:LoggerThis method is similar toLogger.debug(String, Object...)method except that the marker data is also taken into consideration.
-
debug
public void debug(Marker marker, java.lang.String msg, java.lang.Throwable t)
Deprecated.Description copied from interface:LoggerThis method is similar toLogger.debug(String, Throwable)method except that the marker data is also taken into consideration.
-
error
public void error(java.lang.String msg)
Deprecated.Description copied from interface:LoggerLog a message at the ERROR level.
-
error
public void error(java.lang.String format, java.lang.Object arg)Deprecated.Description copied from interface:LoggerLog 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.
-
error
public void error(java.lang.String format, java.lang.Object arg1, java.lang.Object arg2)Deprecated.Description copied from interface:LoggerLog 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.
-
error
public void error(java.lang.String format, java.lang.Object... argArray)Deprecated.Description copied from interface:LoggerLog 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 takingoneandtwoarguments exist solely in order to avoid this hidden cost.
-
error
public void error(java.lang.String msg, java.lang.Throwable t)Deprecated.Description copied from interface:LoggerLog an exception (throwable) at the ERROR level with an accompanying message.
-
error
public void error(Marker marker, java.lang.String msg)
Deprecated.Description copied from interface:LoggerLog a message with the specific Marker at the ERROR level.
-
error
public void error(Marker marker, java.lang.String format, java.lang.Object arg)
Deprecated.Description copied from interface:LoggerThis method is similar toLogger.error(String, Object)method except that the marker data is also taken into consideration.
-
error
public void error(Marker marker, java.lang.String format, java.lang.Object arg1, java.lang.Object arg2)
Deprecated.Description copied from interface:LoggerThis method is similar toLogger.error(String, Object, Object)method except that the marker data is also taken into consideration.
-
error
public void error(Marker marker, java.lang.String format, java.lang.Object... argArray)
Deprecated.Description copied from interface:LoggerThis method is similar toLogger.error(String, Object...)method except that the marker data is also taken into consideration.
-
error
public void error(Marker marker, java.lang.String msg, java.lang.Throwable t)
Deprecated.Description copied from interface:LoggerThis method is similar toLogger.error(String, Throwable)method except that the marker data is also taken into consideration.
-
isInfoEnabled
public boolean isInfoEnabled()
Deprecated.Description copied from interface:LoggerIs the logger instance enabled for the INFO level?- Specified by:
isInfoEnabledin interfaceLogger- Returns:
- True if this Logger is enabled for the INFO level, false otherwise.
-
isInfoEnabled
public boolean isInfoEnabled(Marker marker)
Deprecated.Description copied from interface:LoggerSimilar toLogger.isInfoEnabled()method except that the marker data is also taken into consideration.- Specified by:
isInfoEnabledin interfaceLogger- 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:LoggerLog a message at the INFO level.
-
info
public void info(java.lang.String format, java.lang.Object arg)Deprecated.Description copied from interface:LoggerLog 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.
-
info
public void info(java.lang.String format, java.lang.Object arg1, java.lang.Object arg2)Deprecated.Description copied from interface:LoggerLog 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.
-
info
public void info(java.lang.String format, java.lang.Object... argArray)Deprecated.Description copied from interface:LoggerLog 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 takingoneandtwoarguments exist solely in order to avoid this hidden cost.
-
info
public void info(java.lang.String msg, java.lang.Throwable t)Deprecated.Description copied from interface:LoggerLog an exception (throwable) at the INFO level with an accompanying message.
-
info
public void info(Marker marker, java.lang.String msg)
Deprecated.Description copied from interface:LoggerLog a message with the specific Marker at the INFO level.
-
info
public void info(Marker marker, java.lang.String format, java.lang.Object arg)
Deprecated.Description copied from interface:LoggerThis method is similar toLogger.info(String, Object)method except that the marker data is also taken into consideration.
-
info
public void info(Marker marker, java.lang.String format, java.lang.Object arg1, java.lang.Object arg2)
Deprecated.Description copied from interface:LoggerThis method is similar toLogger.info(String, Object, Object)method except that the marker data is also taken into consideration.
-
info
public void info(Marker marker, java.lang.String format, java.lang.Object... argArray)
Deprecated.Description copied from interface:LoggerThis method is similar toLogger.info(String, Object...)method except that the marker data is also taken into consideration.
-
info
public void info(Marker marker, java.lang.String msg, java.lang.Throwable t)
Deprecated.Description copied from interface:LoggerThis method is similar toLogger.info(String, Throwable)method except that the marker data is also taken into consideration.
-
isTraceEnabled
public boolean isTraceEnabled()
Deprecated.Description copied from interface:LoggerIs the logger instance enabled for the TRACE level?- Specified by:
isTraceEnabledin interfaceLogger- Returns:
- True if this Logger is enabled for the TRACE level, false otherwise.
-
isTraceEnabled
public boolean isTraceEnabled(Marker marker)
Deprecated.Description copied from interface:LoggerSimilar toLogger.isTraceEnabled()method except that the marker data is also taken into account.- Specified by:
isTraceEnabledin interfaceLogger- 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:LoggerIs the logger instance enabled for the ERROR level?- Specified by:
isErrorEnabledin interfaceLogger- Returns:
- True if this Logger is enabled for the ERROR level, false otherwise.
-
isErrorEnabled
public boolean isErrorEnabled(Marker marker)
Deprecated.Description copied from interface:LoggerSimilar toLogger.isErrorEnabled()method except that the marker data is also taken into consideration.- Specified by:
isErrorEnabledin interfaceLogger- 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:LoggerIs the logger instance enabled for the WARN level?- Specified by:
isWarnEnabledin interfaceLogger- Returns:
- True if this Logger is enabled for the WARN level, false otherwise.
-
isWarnEnabled
public boolean isWarnEnabled(Marker marker)
Deprecated.Description copied from interface:LoggerSimilar toLogger.isWarnEnabled()method except that the marker data is also taken into consideration.- Specified by:
isWarnEnabledin interfaceLogger- 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(Level level)
Deprecated.
-
warn
public void warn(java.lang.String msg)
Deprecated.Description copied from interface:LoggerLog a message at the WARN level.
-
warn
public void warn(java.lang.String msg, java.lang.Throwable t)Deprecated.Description copied from interface:LoggerLog an exception (throwable) at the WARN level with an accompanying message.
-
warn
public void warn(java.lang.String format, java.lang.Object arg)Deprecated.Description copied from interface:LoggerLog 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.
-
warn
public void warn(java.lang.String format, java.lang.Object arg1, java.lang.Object arg2)Deprecated.Description copied from interface:LoggerLog 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.
-
warn
public void warn(java.lang.String format, java.lang.Object... argArray)Deprecated.Description copied from interface:LoggerLog 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 takingoneandtwoarguments exist solely in order to avoid this hidden cost.
-
warn
public void warn(Marker marker, java.lang.String msg)
Deprecated.Description copied from interface:LoggerLog a message with the specific Marker at the WARN level.
-
warn
public void warn(Marker marker, java.lang.String format, java.lang.Object arg)
Deprecated.Description copied from interface:LoggerThis method is similar toLogger.warn(String, Object)method except that the marker data is also taken into consideration.
-
warn
public void warn(Marker marker, java.lang.String format, java.lang.Object... argArray)
Deprecated.Description copied from interface:LoggerThis method is similar toLogger.warn(String, Object...)method except that the marker data is also taken into consideration.
-
warn
public void warn(Marker marker, java.lang.String format, java.lang.Object arg1, java.lang.Object arg2)
Deprecated.Description copied from interface:LoggerThis method is similar toLogger.warn(String, Object, Object)method except that the marker data is also taken into consideration.
-
warn
public void warn(Marker marker, java.lang.String msg, java.lang.Throwable t)
Deprecated.Description copied from interface:LoggerThis method is similar toLogger.warn(String, Throwable)method except that the marker data is also taken into consideration.
-
isAdditive
public boolean isAdditive()
Deprecated.
-
setAdditive
public void setAdditive(boolean additive)
Deprecated.
-
toString
public java.lang.String toString()
Deprecated.- Overrides:
toStringin classjava.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:LocationAwareLoggerPrinting method with support for location information.- Specified by:
login interfaceLocationAwareLogger- 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 interfacemessage- The message for the log eventt- 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
-
-