|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: INNER | POINTCUT | FIELD | CONSTRUCTOR | METHOD | DETAIL: FIELD | POINTCUT | CONSTRUCTOR | METHOD |
Interface for logging implementation classes
Constructor Summary | |
Log()
Interface for logging implementation classes |
Method Summary | |
abstract void |
debug(String theMessage)
Log a DEBUG level message. |
abstract void |
debug(String theMessage,
Throwable theThrowable)
Log a DEBUG level message along with an exception |
abstract void |
entry(String theMessage)
Used to log a message when entering a method. |
abstract void |
error(String theMessage)
Log an ERROR level message. |
abstract void |
error(String theMessage,
Throwable theThrowable)
Log an ERROR level message along with an exception |
abstract void |
error(Throwable theThrowable)
Log an ERROR level exception only |
abstract void |
exit(String theMessage)
Used to log a message when exiting a method. |
abstract void |
info(String theMessage)
Log an INFO level message. |
abstract void |
info(String theMessage,
Throwable theThrowable)
Log an INFO level message along with an exception |
abstract boolean |
isDebugEnabled()
|
abstract void |
warn(String theMessage)
Log a WARNING level message. |
abstract void |
warn(String theMessage,
Throwable theThrowable)
Log a WARNING level message along with an exception |
Constructor Detail |
public Log()
Method Detail |
public void debug(String theMessage)
theMessage
- the message to log
public void debug(String theMessage, Throwable theThrowable)
theMessage
- the message to log
theThrowable
- the exception to log
public void entry(String theMessage)
theMessage
- the message to log
public void error(String theMessage)
theMessage
- the message to log
public void error(String theMessage, Throwable theThrowable)
theMessage
- the message to log
theThrowable
- the exception to log
public void error(Throwable theThrowable)
theThrowable
- the exception to log
public void exit(String theMessage)
theMessage
- the message to log
public void info(String theMessage)
theMessage
- the message to log
public void info(String theMessage, Throwable theThrowable)
theMessage
- the message to log
theThrowable
- the exception to log
public boolean isDebugEnabled()
public void warn(String theMessage)
theMessage
- the message to log
public void warn(String theMessage, Throwable theThrowable)
theMessage
- the message to log
theThrowable
- the exception to log
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: INNER | FIELD | CONSTRUCTOR | METHOD | DETAIL: FIELD | CONSTRUCTOR | METHOD |