| com.mysql.jdbc.log.Log
Log | public interface Log (Code) | | Unified interface to logging facilities on different platforms
author: Mark Matthews version: $Id: Log.java 3726 2005-05-19 15:52:24Z mmatthews $ |
isDebugEnabled | boolean isDebugEnabled()(Code) | | Is the 'debug' log level enabled?
true if so. |
isErrorEnabled | boolean isErrorEnabled()(Code) | | Is the 'error' log level enabled?
true if so. |
isFatalEnabled | boolean isFatalEnabled()(Code) | | Is the 'fatal' log level enabled?
true if so. |
isInfoEnabled | boolean isInfoEnabled()(Code) | | Is the 'info' log level enabled?
true if so. |
isTraceEnabled | boolean isTraceEnabled()(Code) | | Is the 'trace' log level enabled?
true if so. |
isWarnEnabled | boolean isWarnEnabled()(Code) | | Is the 'warn' log level enabled?
true if so. |
logDebug | void logDebug(Object msg)(Code) | | Logs the given message instance using the 'debug' level
Parameters: msg - the message to log |
logDebug | void logDebug(Object msg, Throwable thrown)(Code) | | Logs the given message and Throwable at the 'debug' level.
Parameters: msg - the message to log Parameters: thrown - the throwable to log (may be null) |
logError | void logError(Object msg)(Code) | | Logs the given message instance using the 'error' level
Parameters: msg - the message to log |
logError | void logError(Object msg, Throwable thrown)(Code) | | Logs the given message and Throwable at the 'error' level.
Parameters: msg - the message to log Parameters: thrown - the throwable to log (may be null) |
logFatal | void logFatal(Object msg)(Code) | | Logs the given message instance using the 'fatal' level
Parameters: msg - the message to log |
logFatal | void logFatal(Object msg, Throwable thrown)(Code) | | Logs the given message and Throwable at the 'fatal' level.
Parameters: msg - the message to log Parameters: thrown - the throwable to log (may be null) |
logInfo | void logInfo(Object msg)(Code) | | Logs the given message instance using the 'info' level
Parameters: msg - the message to log |
logInfo | void logInfo(Object msg, Throwable thrown)(Code) | | Logs the given message and Throwable at the 'info' level.
Parameters: msg - the message to log Parameters: thrown - the throwable to log (may be null) |
logTrace | void logTrace(Object msg)(Code) | | Logs the given message instance using the 'trace' level
Parameters: msg - the message to log |
logTrace | void logTrace(Object msg, Throwable thrown)(Code) | | Logs the given message and Throwable at the 'trace' level.
Parameters: msg - the message to log Parameters: thrown - the throwable to log (may be null) |
logWarn | void logWarn(Object msg)(Code) | | Logs the given message instance using the 'warn' level
Parameters: msg - the message to log |
logWarn | void logWarn(Object msg, Throwable thrown)(Code) | | Logs the given message and Throwable at the 'warn' level.
Parameters: msg - the message to log Parameters: thrown - the throwable to log (may be null) |
|
|