| java.lang.Object com.sun.xml.ws.tx.common.TxLogger
Method Summary | |
public void | config(String methodName, String message) | public void | config(String methodName, String message, Throwable thrown) | public void | entering(String methodName) | public void | entering(String methodName, Object parameter) | public void | entering(String methodName, Object[] parameters) | public void | exiting(String methodName) | public void | exiting(String methodName, Object result) | public void | fine(String methodName, String message) | public void | fine(String methodName, String message, Throwable thrown) | public void | finer(String methodName, String message) | public void | finer(String methodName, String message, Throwable thrown) | public void | finest(String methodName, String message) | public void | finest(String methodName, String message, Throwable thrown) | public static TxLogger | getATLogger(Class componentClass) Logging specifically for *.wstx.wsat subsystem. | public static TxLogger | getCoordLogger(Class componentClass) Logging specifically for *.wstx.wscoord subsystem. | public static TxLogger | getLogger(Class componentClass) The factory method returns preconfigured TxLogger wrapper for the class. | public void | info(String methodName, String message) | public void | info(String methodName, String message, Throwable thrown) | public boolean | isLogging(Level level) | public void | log(Level level, String methodName, String message) | public void | log(Level level, String methodName, String message, Throwable thrown) | public void | severe(String methodName, String message) | public void | severe(String methodName, String message, Throwable thrown) | public void | warning(String methodName, String message) | public void | warning(String methodName, String message, Throwable thrown) |
getATLogger | public static TxLogger getATLogger(Class componentClass)(Code) | | Logging specifically for *.wstx.wsat subsystem.
|
getCoordLogger | public static TxLogger getCoordLogger(Class componentClass)(Code) | | Logging specifically for *.wstx.wscoord subsystem.
|
getLogger | public static TxLogger getLogger(Class componentClass)(Code) | | The factory method returns preconfigured TxLogger wrapper for the class. Since there is no caching implemented,
it is advised that the method is called only once per a class in order to initialize a final static logger variable,
which is then used through the class to perform actual logging tasks.
Parameters: componentClass - class of the component that will use the logger instance. Must not be null . logger instance preconfigured for use with the component throws: NullPointerException - if the componentClass parameter is null . |
|
|