Package org.eclipse.jetty.util.log
Interface Logger
-
- All Known Implementing Classes:
AbstractLogger
,JavaUtilLog
,LoggerLog
,Slf4jLog
,StdErrLog
@Deprecated(since="2021-05-27") public interface Logger
Deprecated.The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.A simple logging facade that is intended simply to capture the style of logging as used by Jetty.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description void
debug(String msg, long value)
Deprecated.Formats and logs at debug level.void
debug(String msg, Object... args)
Deprecated.Formats and logs at debug level.void
debug(String msg, Throwable thrown)
Deprecated.Logs the given message at debug level, with Throwable information.void
debug(Throwable thrown)
Deprecated.Logs the given Throwable information at debug levelLogger
getLogger(String name)
Deprecated.String
getName()
Deprecated.void
ignore(Throwable ignored)
Deprecated.Ignore an exception.void
info(String msg, Object... args)
Deprecated.Formats and logs at info level.void
info(String msg, Throwable thrown)
Deprecated.Logs the given message at info level, with Throwable information.void
info(Throwable thrown)
Deprecated.Logs the given Throwable information at info levelboolean
isDebugEnabled()
Deprecated.void
setDebugEnabled(boolean enabled)
Deprecated.Mutator used to turn debug on programmatically.void
warn(String msg, Object... args)
Deprecated.Formats and logs at warn level.void
warn(String msg, Throwable thrown)
Deprecated.Logs the given message at warn level, with Throwable information.void
warn(Throwable thrown)
Deprecated.Logs the given Throwable information at warn level
-
-
-
Method Detail
-
getName
String getName()
Deprecated.- Returns:
- the name of this logger
-
warn
void warn(String msg, Object... args)
Deprecated.Formats and logs at warn level.- Parameters:
msg
- the formatting stringargs
- the optional arguments
-
warn
void warn(Throwable thrown)
Deprecated.Logs the given Throwable information at warn level- Parameters:
thrown
- the Throwable to log
-
warn
void warn(String msg, Throwable thrown)
Deprecated.Logs the given message at warn level, with Throwable information.- Parameters:
msg
- the message to logthrown
- the Throwable to log
-
info
void info(String msg, Object... args)
Deprecated.Formats and logs at info level.- Parameters:
msg
- the formatting stringargs
- the optional arguments
-
info
void info(Throwable thrown)
Deprecated.Logs the given Throwable information at info level- Parameters:
thrown
- the Throwable to log
-
info
void info(String msg, Throwable thrown)
Deprecated.Logs the given message at info level, with Throwable information.- Parameters:
msg
- the message to logthrown
- the Throwable to log
-
isDebugEnabled
boolean isDebugEnabled()
Deprecated.- Returns:
- whether the debug level is enabled
-
setDebugEnabled
void setDebugEnabled(boolean enabled)
Deprecated.Mutator used to turn debug on programmatically.- Parameters:
enabled
- whether to enable the debug level
-
debug
void debug(String msg, Object... args)
Deprecated.Formats and logs at debug level.- Parameters:
msg
- the formatting stringargs
- the optional arguments
-
debug
void debug(String msg, long value)
Deprecated.Formats and logs at debug level. avoids autoboxing of integers- Parameters:
msg
- the formatting stringvalue
- long value
-
debug
void debug(Throwable thrown)
Deprecated.Logs the given Throwable information at debug level- Parameters:
thrown
- the Throwable to log
-
debug
void debug(String msg, Throwable thrown)
Deprecated.Logs the given message at debug level, with Throwable information.- Parameters:
msg
- the message to logthrown
- the Throwable to log
-
getLogger
Logger getLogger(String name)
Deprecated.- Parameters:
name
- the name of the logger- Returns:
- a logger with the given name
-
ignore
void ignore(Throwable ignored)
Deprecated.Ignore an exception.This should be used rather than an empty catch block.
- Parameters:
ignored
- the throwable to log as ignored
-
-