|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface Logger
A simple logging facade that is intended simply to capture the style of logging as used by Jetty.
| Method Summary | |
|---|---|
void |
debug(java.lang.String msg,
java.lang.Object... args)
Formats and logs at debug level. |
void |
debug(java.lang.String msg,
java.lang.Throwable thrown)
Logs the given message at debug level, with Throwable information. |
void |
debug(java.lang.Throwable thrown)
Logs the given Throwable information at debug level |
Logger |
getLogger(java.lang.String name)
|
java.lang.String |
getName()
|
void |
ignore(java.lang.Throwable ignored)
Ignore an exception. |
void |
info(java.lang.String msg,
java.lang.Object... args)
Formats and logs at info level. |
void |
info(java.lang.String msg,
java.lang.Throwable thrown)
Logs the given message at info level, with Throwable information. |
void |
info(java.lang.Throwable thrown)
Logs the given Throwable information at info level |
boolean |
isDebugEnabled()
|
void |
setDebugEnabled(boolean enabled)
Mutator used to turn debug on programmatically. |
void |
warn(java.lang.String msg,
java.lang.Object... args)
Formats and logs at warn level. |
void |
warn(java.lang.String msg,
java.lang.Throwable thrown)
Logs the given message at warn level, with Throwable information. |
void |
warn(java.lang.Throwable thrown)
Logs the given Throwable information at warn level |
| Method Detail |
|---|
java.lang.String getName()
void warn(java.lang.String msg,
java.lang.Object... args)
msg - the formatting stringargs - the optional argumentsvoid warn(java.lang.Throwable thrown)
thrown - the Throwable to log
void warn(java.lang.String msg,
java.lang.Throwable thrown)
msg - the message to logthrown - the Throwable to log
void info(java.lang.String msg,
java.lang.Object... args)
msg - the formatting stringargs - the optional argumentsvoid info(java.lang.Throwable thrown)
thrown - the Throwable to log
void info(java.lang.String msg,
java.lang.Throwable thrown)
msg - the message to logthrown - the Throwable to logboolean isDebugEnabled()
void setDebugEnabled(boolean enabled)
enabled - whether to enable the debug level
void debug(java.lang.String msg,
java.lang.Object... args)
msg - the formatting stringargs - the optional argumentsvoid debug(java.lang.Throwable thrown)
thrown - the Throwable to log
void debug(java.lang.String msg,
java.lang.Throwable thrown)
msg - the message to logthrown - the Throwable to logLogger getLogger(java.lang.String name)
name - the name of the logger
void ignore(java.lang.Throwable ignored)
This should be used rather than an empty catch block.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||