org.apache.ws.jaxme.logging
public interface Logger
The Logger interface describes an object which is able to log a message.
Method Summary | |
---|---|
void | entering(String pMethodName, Object[] pDetails) Logs the message that a method is entered. |
void | entering(String pMethodName) Logs the message that a method is entered. |
void | entering(String pMethodName, Object pDetails1) Logs the message that a method is entered. |
void | error(String pMethodName, String pMsg, Object[] pDetails) Logs the given message with error level. |
void | error(String pMethodName, String pMsg) Logs the given message with error level. |
void | error(String pMethodName, String pMsg, Object pDetails) Logs the given message with error level. |
void | exiting(String pMethodName, Object[] pDetails) Logs the message that a method is exiting. |
void | exiting(String pMethodName) Logs the message that a method is exiting. |
void | exiting(String pMethodName, Object pDetails1) Logs the message that a method is exiting. |
void | fine(String pMethodName, String pMsg, Object[] pDetails) Logs the given message with fine level. |
void | fine(String pMethodName, String pMsg) Logs the given message with fine level. |
void | fine(String pMethodName, String pMsg, Object pDetails) Logs the given message with fine level. |
void | finer(String pMethodName, String pMsg, Object[] pDetails) Logs the given message with finer level. |
void | finer(String pMethodName, String pMsg) Logs the given message with finer level. |
void | finer(String pMethodName, String pMsg, Object pDetails) Logs the given message with finer level. |
void | finest(String pMethodName, String pMsg, Object[] pDetails) Logs the given message with finest level. |
void | finest(String pMethodName, String pMsg) Logs the given message with finest level. |
void | finest(String pMethodName, String pMsg, Object pDetails) Logs the given message with finest level. |
void | info(String pMethodName, String pMsg, Object[] pDetails) Logs the given message with info level. |
void | info(String pMethodName, String pMsg) Logs the given message with info level. |
void | info(String pMethodName, String pMsg, Object pDetails) Logs the given message with info level. |
boolean | isErrorEnabled() Returns whether error logging is enabled. |
boolean | isFineEnabled() Returns whether fine logging is enabled. |
boolean | isFinerEnabled() Returns whether fine logging is enabled. |
boolean | isFinestEnabled() Returns whether finest logging is enabled. |
boolean | isInfoEnabled() Returns whether info logging is enabled. |
boolean | isWarnEnabled() Returns whether warning logging is enabled. |
void | throwing(String pMethodName, Throwable pThrowable) Logs the given Throwable. |
void | warn(String pMethodName, String pMsg, Object[] pDetails) Logs the given message with warning level. |
void | warn(String pMethodName, String pMsg) Logs the given message with warning level. |
void | warn(String pMethodName, String pMsg, Object pDetails) Logs the given message with warning level. |
Logs the message that a method is entered.
Logs the message that a method is entered.
Logs the message that a method is entered.
Logs the given message with error level.
Logs the given message with error level.
Logs the given message with error level.
Logs the message that a method is exiting.
Logs the message that a method is exiting.
Logs the message that a method is exiting.
Logs the given message with fine level.
Logs the given message with fine level.
Logs the given message with fine level.
Logs the given message with finer level.
Logs the given message with finer level.
Logs the given message with finer level.
Logs the given message with finest level.
Logs the given message with finest level.
Logs the given message with finest level.
Logs the given message with info level.
Logs the given message with info level.
Logs the given message with info level.
Returns whether error logging is enabled.
Returns whether fine logging is enabled.
Returns whether fine logging is enabled.
Returns whether finest logging is enabled.
Returns whether info logging is enabled.
Returns whether warning logging is enabled.
Logs the given Throwable.
Logs the given message with warning level.
Logs the given message with warning level.
Logs the given message with warning level.