|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
Abstract mechanism for dealing with logs from various objects. Implementations are expected to have a constructor that takes a single String representing the name of the logging item, or an empty constructor.
LoggerFactory| Method Summary | |
void |
debug(Object message)
Log a message at debug level. |
void |
debug(Object message,
Throwable exception)
Log a message at debug level. |
void |
error(Object message)
Log a message at error level. |
void |
error(Object message,
Throwable exception)
Log a message at error level. |
void |
fatal(Object message)
Log a message at fatal level. |
void |
fatal(Object message,
Throwable exception)
Log a message at fatal level. |
String |
getName()
Get the name of this logger. |
void |
info(Object message)
Log a message at info level. |
void |
info(Object message,
Throwable exception)
Log a message at info level. |
boolean |
isDebugEnabled()
True if debug is enabled for this logger. |
boolean |
isInfoEnabled()
True if info is enabled for this logger. |
void |
log(Level level,
Object message)
Log a message at the specified level. |
void |
log(Level level,
Object message,
Throwable exception)
Log a message at the specified level. |
void |
warn(Object message)
Log a message at warning level. |
void |
warn(Object message,
Throwable exception)
Log a message at warning level. |
| Method Detail |
public String getName()
public boolean isDebugEnabled()
public boolean isInfoEnabled()
public void log(Level level,
Object message,
Throwable exception)
level - the level at which to logmessage - the message to logexception - an exception that caused the message
public void log(Level level,
Object message)
level - the level at which to logmessage - the message to log
public void debug(Object message,
Throwable exception)
message - the message to logexception - the exception that caused the message to be generatedpublic void debug(Object message)
message - the message to log
public void info(Object message,
Throwable exception)
message - the message to logexception - the exception that caused the message to be generatedpublic void info(Object message)
message - the message to log
public void warn(Object message,
Throwable exception)
message - the message to logexception - the exception that caused the message to be generatedpublic void warn(Object message)
message - the message to log
public void error(Object message,
Throwable exception)
message - the message to logexception - the exception that caused the message to be generatedpublic void error(Object message)
message - the message to log
public void fatal(Object message,
Throwable exception)
message - the message to logexception - the exception that caused the message to be generatedpublic void fatal(Object message)
message - the message to log
|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||