|
Commons Logging to JBoss Logging 1.0.0.Final | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface Log
A simple org.apache.commons.logging interface abstracting org.apache.commons.logging APIs. In order to be
instantiated successfully by LogFactory, classes that implement
this interface must have a constructor that takes a single String
parameter representing the "name" of this Log.
The six org.apache.commons.logging levels used by Log are (in order):
Performance is often a org.apache.commons.logging concern. By examining the appropriate property, a component can avoid expensive operations (producing information to be logged).
For example,
if (log.isDebugEnabled()) {
... do something expensive ...
log.debug(theResult);
}
Configuration of the underlying org.apache.commons.logging system will generally be done external to the Logging APIs, through whatever mechanism is supported by that system.
| Method Summary | |
|---|---|
void |
debug(Object message)
Logs a message with debug log level. |
void |
debug(Object message,
Throwable t)
Logs an error with debug log level. |
void |
error(Object message)
Logs a message with error log level. |
void |
error(Object message,
Throwable t)
Logs an error with error log level. |
void |
fatal(Object message)
Logs a message with fatal log level. |
void |
fatal(Object message,
Throwable t)
Logs an error with fatal log level. |
void |
info(Object message)
Logs a message with info log level. |
void |
info(Object message,
Throwable t)
Logs an error with info log level. |
boolean |
isDebugEnabled()
Is debug org.apache.commons.logging currently enabled? |
boolean |
isErrorEnabled()
Is error org.apache.commons.logging currently enabled? |
boolean |
isFatalEnabled()
Is fatal org.apache.commons.logging currently enabled? |
boolean |
isInfoEnabled()
Is info org.apache.commons.logging currently enabled? |
boolean |
isTraceEnabled()
Is trace org.apache.commons.logging currently enabled? |
boolean |
isWarnEnabled()
Is warn org.apache.commons.logging currently enabled? |
void |
trace(Object message)
Logs a message with trace log level. |
void |
trace(Object message,
Throwable t)
Logs an error with trace log level. |
void |
warn(Object message)
Logs a message with warn log level. |
void |
warn(Object message,
Throwable t)
Logs an error with warn log level. |
| Method Detail |
|---|
void debug(Object message)
message - log this message
void debug(Object message,
Throwable t)
message - log this messaget - log this causevoid error(Object message)
message - log this message
void error(Object message,
Throwable t)
message - log this messaget - log this causevoid fatal(Object message)
message - log this message
void fatal(Object message,
Throwable t)
message - log this messaget - log this causevoid info(Object message)
message - log this message
void info(Object message,
Throwable t)
message - log this messaget - log this causeboolean isDebugEnabled()
Call this method to prevent having to perform expensive operations
(for example, String concatenation)
when the log level is more than debug.
boolean isErrorEnabled()
Call this method to prevent having to perform expensive operations
(for example, String concatenation)
when the log level is more than error.
boolean isFatalEnabled()
Call this method to prevent having to perform expensive operations
(for example, String concatenation)
when the log level is more than fatal.
boolean isInfoEnabled()
Call this method to prevent having to perform expensive operations
(for example, String concatenation)
when the log level is more than info.
boolean isTraceEnabled()
Call this method to prevent having to perform expensive operations
(for example, String concatenation)
when the log level is more than trace.
boolean isWarnEnabled()
Call this method to prevent having to perform expensive operations
(for example, String concatenation)
when the log level is more than warn.
void trace(Object message)
message - log this message
void trace(Object message,
Throwable t)
message - log this messaget - log this causevoid warn(Object message)
message - log this message
void warn(Object message,
Throwable t)
message - log this messaget - log this cause
|
Commons Logging to JBoss Logging 1.0.0.Final | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||