Package org.eclipse.jetty.util.log
Class Slf4jLog
- java.lang.Object
-
- org.eclipse.jetty.util.log.AbstractLogger
-
- org.eclipse.jetty.util.log.Slf4jLog
-
- All Implemented Interfaces:
Logger
@Deprecated(since="2021-05-27") public class Slf4jLog extends AbstractLogger
Deprecated.The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.Slf4jLog Logger
-
-
Field Summary
-
Fields inherited from class org.eclipse.jetty.util.log.AbstractLogger
LEVEL_ALL, LEVEL_DEBUG, LEVEL_DEFAULT, LEVEL_INFO, LEVEL_OFF, LEVEL_WARN
-
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description voiddebug(java.lang.String msg, long arg)Deprecated.Formats and logs at debug level.voiddebug(java.lang.String msg, java.lang.Object... args)Deprecated.Formats and logs at debug level.voiddebug(java.lang.String msg, java.lang.Throwable thrown)Deprecated.Logs the given message at debug level, with Throwable information.voiddebug(java.lang.Throwable thrown)Deprecated.Logs the given Throwable information at debug leveljava.lang.StringgetName()Deprecated.voidignore(java.lang.Throwable ignored)Deprecated.Ignore an exception.voidinfo(java.lang.String msg, java.lang.Object... args)Deprecated.Formats and logs at info level.voidinfo(java.lang.String msg, java.lang.Throwable thrown)Deprecated.Logs the given message at info level, with Throwable information.voidinfo(java.lang.Throwable thrown)Deprecated.Logs the given Throwable information at info levelbooleanisDebugEnabled()Deprecated.voidsetDebugEnabled(boolean enabled)Deprecated.Mutator used to turn debug on programmatically.java.lang.StringtoString()Deprecated.voidwarn(java.lang.String msg, java.lang.Object... args)Deprecated.Formats and logs at warn level.voidwarn(java.lang.String msg, java.lang.Throwable thrown)Deprecated.Logs the given message at warn level, with Throwable information.voidwarn(java.lang.Throwable thrown)Deprecated.Logs the given Throwable information at warn level-
Methods inherited from class org.eclipse.jetty.util.log.AbstractLogger
getLogger, getLoggingProperty, lookupLoggingLevel
-
-
-
-
Method Detail
-
getName
public java.lang.String getName()
Deprecated.- Returns:
- the name of this logger
-
warn
public void warn(java.lang.String msg, java.lang.Object... args)Deprecated.Description copied from interface:LoggerFormats and logs at warn level.- Parameters:
msg- the formatting stringargs- the optional arguments
-
warn
public void warn(java.lang.Throwable thrown)
Deprecated.Description copied from interface:LoggerLogs the given Throwable information at warn level- Parameters:
thrown- the Throwable to log
-
warn
public void warn(java.lang.String msg, java.lang.Throwable thrown)Deprecated.Description copied from interface:LoggerLogs the given message at warn level, with Throwable information.- Parameters:
msg- the message to logthrown- the Throwable to log
-
info
public void info(java.lang.String msg, java.lang.Object... args)Deprecated.Description copied from interface:LoggerFormats and logs at info level.- Parameters:
msg- the formatting stringargs- the optional arguments
-
info
public void info(java.lang.Throwable thrown)
Deprecated.Description copied from interface:LoggerLogs the given Throwable information at info level- Parameters:
thrown- the Throwable to log
-
info
public void info(java.lang.String msg, java.lang.Throwable thrown)Deprecated.Description copied from interface:LoggerLogs the given message at info level, with Throwable information.- Parameters:
msg- the message to logthrown- the Throwable to log
-
debug
public void debug(java.lang.String msg, java.lang.Object... args)Deprecated.Description copied from interface:LoggerFormats and logs at debug level.- Parameters:
msg- the formatting stringargs- the optional arguments
-
debug
public void debug(java.lang.String msg, long arg)Deprecated.Description copied from interface:LoggerFormats and logs at debug level. avoids autoboxing of integers- Specified by:
debugin interfaceLogger- Overrides:
debugin classAbstractLogger- Parameters:
msg- the formatting stringarg- long value
-
debug
public void debug(java.lang.Throwable thrown)
Deprecated.Description copied from interface:LoggerLogs the given Throwable information at debug level- Parameters:
thrown- the Throwable to log
-
debug
public void debug(java.lang.String msg, java.lang.Throwable thrown)Deprecated.Description copied from interface:LoggerLogs the given message at debug level, with Throwable information.- Parameters:
msg- the message to logthrown- the Throwable to log
-
isDebugEnabled
public boolean isDebugEnabled()
Deprecated.- Returns:
- whether the debug level is enabled
-
setDebugEnabled
public void setDebugEnabled(boolean enabled)
Deprecated.Description copied from interface:LoggerMutator used to turn debug on programmatically.- Parameters:
enabled- whether to enable the debug level
-
ignore
public void ignore(java.lang.Throwable ignored)
Deprecated.Description copied from interface:LoggerIgnore an exception.This should be used rather than an empty catch block.
- Parameters:
ignored- the throwable to log as ignored
-
toString
public java.lang.String toString()
Deprecated.- Overrides:
toStringin classjava.lang.Object
-
-