| java.lang.Object com.mysql.jdbc.log.Jdk14Logger
Jdk14Logger | public class Jdk14Logger implements Log(Code) | | Logging functionality for JDK1.4
author: Mark Matthews version: $Id: Jdk14Logger.java 3726 2005-05-19 15:52:24Z mmatthews $ |
Constructor Summary | |
public | Jdk14Logger(String name) Creates a new Jdk14Logger object. |
jdkLogger | protected Logger jdkLogger(Code) | | The underlying logger from JDK-1.4
|
Jdk14Logger | public Jdk14Logger(String name)(Code) | | Creates a new Jdk14Logger object.
Parameters: name - DOCUMENT ME! |
logDebug | public void logDebug(Object message)(Code) | | Logs the given message instance using the 'debug' level
Parameters: message - the message to log |
logDebug | public void logDebug(Object message, Throwable exception)(Code) | | Logs the given message and Throwable at the 'debug' level.
Parameters: message - the message to log Parameters: exception - the throwable to log (may be null) |
logError | public void logError(Object message)(Code) | | Logs the given message instance using the 'error' level
Parameters: message - the message to log |
logError | public void logError(Object message, Throwable exception)(Code) | | Logs the given message and Throwable at the 'error' level.
Parameters: message - the message to log Parameters: exception - the throwable to log (may be null) |
logFatal | public void logFatal(Object message)(Code) | | Logs the given message instance using the 'fatal' level
Parameters: message - the message to log |
logFatal | public void logFatal(Object message, Throwable exception)(Code) | | Logs the given message and Throwable at the 'fatal' level.
Parameters: message - the message to log Parameters: exception - the throwable to log (may be null) |
logInfo | public void logInfo(Object message)(Code) | | Logs the given message instance using the 'info' level
Parameters: message - the message to log |
logInfo | public void logInfo(Object message, Throwable exception)(Code) | | Logs the given message and Throwable at the 'info' level.
Parameters: message - the message to log Parameters: exception - the throwable to log (may be null) |
logTrace | public void logTrace(Object message)(Code) | | Logs the given message instance using the 'trace' level
Parameters: message - the message to log |
logTrace | public void logTrace(Object message, Throwable exception)(Code) | | Logs the given message and Throwable at the 'trace' level.
Parameters: message - the message to log Parameters: exception - the throwable to log (may be null) |
logWarn | public void logWarn(Object message)(Code) | | Logs the given message instance using the 'warn' level
Parameters: message - the message to log |
logWarn | public void logWarn(Object message, Throwable exception)(Code) | | Logs the given message and Throwable at the 'warn' level.
Parameters: message - the message to log Parameters: exception - the throwable to log (may be null) |
|
|