public class LoggerLog extends AbstractLogger
Modifier and Type | Method and Description |
---|---|
void |
debug(String msg,
long value)
Formats and logs at debug level.
|
void |
debug(String msg,
Object... args)
Formats and logs at debug level.
|
void |
debug(String msg,
Throwable th)
Logs the given message at debug level, with Throwable information.
|
void |
debug(Throwable thrown)
Logs the given Throwable information at debug level
|
String |
getName() |
void |
ignore(Throwable ignored)
Ignore an exception.
|
void |
info(String msg,
Object... args)
Formats and logs at info level.
|
void |
info(String msg,
Throwable thrown)
Logs the given message at info level, with Throwable information.
|
void |
info(Throwable thrown)
Logs the given Throwable information at info level
|
boolean |
isDebugEnabled() |
protected Logger |
newLogger(String fullname)
Create a Child Logger of this Logger.
|
void |
setDebugEnabled(boolean enabled)
Mutator used to turn debug on programmatically.
|
void |
warn(String msg,
Object... args)
Formats and logs at warn level.
|
void |
warn(String msg,
Throwable thrown)
Logs the given message at warn level, with Throwable information.
|
void |
warn(Throwable thrown)
Logs the given Throwable information at warn level
|
getLogger
public LoggerLog(Object logger)
public String getName()
public void warn(String msg, Object... args)
Logger
msg
- the formatting stringargs
- the optional argumentspublic void warn(Throwable thrown)
Logger
thrown
- the Throwable to logpublic void warn(String msg, Throwable thrown)
Logger
msg
- the message to logthrown
- the Throwable to logpublic void info(String msg, Object... args)
Logger
msg
- the formatting stringargs
- the optional argumentspublic void info(Throwable thrown)
Logger
thrown
- the Throwable to logpublic void info(String msg, Throwable thrown)
Logger
msg
- the message to logthrown
- the Throwable to logpublic boolean isDebugEnabled()
public void setDebugEnabled(boolean enabled)
Logger
enabled
- whether to enable the debug levelpublic void debug(String msg, Object... args)
Logger
msg
- the formatting stringargs
- the optional argumentspublic void debug(Throwable thrown)
Logger
thrown
- the Throwable to logpublic void debug(String msg, Throwable th)
Logger
msg
- the message to logth
- the Throwable to logpublic void debug(String msg, long value)
Logger
debug
in interface Logger
debug
in class AbstractLogger
msg
- the formatting stringvalue
- long valuepublic void ignore(Throwable ignored)
Logger
This should be used rather than an empty catch block.
protected Logger newLogger(String fullname)
newLogger
in class AbstractLogger
Copyright © 1995-2015 Webtide. All Rights Reserved.