|
Kieker 1.10 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectkieker.common.logging.LogImplCommonsLogging
public final class LogImplCommonsLogging
This is an actual implementation of the logging interface used by the common logger of the JVM.
| Method Summary | |
|---|---|
void |
debug(String message)
Log a message with debug log level. |
void |
debug(String message,
Throwable t)
Log an error with debug log level. |
void |
error(String message)
Log a message with error log level. |
void |
error(String message,
Throwable t)
Log an error with error log level. |
void |
info(String message)
Log a message with info log level. |
void |
info(String message,
Throwable t)
Log an error with info log level. |
boolean |
isDebugEnabled()
Is debug logging currently enabled? |
boolean |
isTraceEnabled()
Is trace logging currently enabled? |
void |
trace(String message)
Log a message with trace log level. |
void |
trace(String message,
Throwable t)
Log an error with trace log level. |
void |
warn(String message)
Log a message with warn log level. |
void |
warn(String message,
Throwable t)
Log an error with warn log level. |
| Methods inherited from class java.lang.Object |
|---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method Detail |
|---|
public boolean isTraceEnabled()
LogIs trace logging currently enabled?
Call this method to prevent having to perform expensive operations (for example, String concatenation) when the log level is more than trace.
isTraceEnabled in interface Logpublic void trace(String message)
LogLog a message with trace log level.
Use this log level for the development mode to log a single step, e.g., "Loaded user 'Helen'" (cf. Log.debug(String)).
trace in interface Logmessage - log this message
public void trace(String message,
Throwable t)
LogLog an error with trace log level.
Use this log level for the development mode to log a single step, e.g., "Loaded user 'Helen'" (cf. Log.debug(String, Throwable)).
trace in interface Logmessage - log this messaget - log this causepublic boolean isDebugEnabled()
Is debug logging currently enabled?
Call this method to prevent having to perform expensive operations (for example, String concatenation) when the log level is more than debug.
isDebugEnabled in interface Logpublic void debug(String message)
Log a message with debug log level.
Use this log level for the development mode to log a set of single steps, e.g., "Loaded 10 users from file" (cf. Log.trace(String)).
debug in interface Logmessage - log this message
public void debug(String message,
Throwable t)
Log an error with debug log level.
Use this log level for the development mode to log a set of single steps, e.g., "Loaded 10 users from file" (cf. Log.trace(String, Throwable)).
debug in interface Logmessage - log this messaget - log this causepublic void info(String message)
Log a message with info log level.
Use this log level for the production mode.
info in interface Logmessage - log this message
public void info(String message,
Throwable t)
Log an error with info log level.
Use this log level for the production mode.
info in interface Logmessage - log this messaget - log this causepublic void warn(String message)
Log a message with warn log level.
Use this log level for the production mode.
warn in interface Logmessage - log this message
public void warn(String message,
Throwable t)
Log an error with warn log level.
Use this log level for the production mode.
warn in interface Logmessage - log this messaget - log this causepublic void error(String message)
Log a message with error log level.
Use this log level for the production mode.
error in interface Logmessage - log this message
public void error(String message,
Throwable t)
Log an error with error log level.
Use this log level for the production mode.
error in interface Logmessage - log this messaget - log this cause
|
Kieker 1.10 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||