| java.lang.Object org.enhydra.jawe.base.logger.LoggingManager
LoggingManager | public class LoggingManager (Code) | | author: Miroslav Popov |
Method Summary | |
public void | debug(String msg) Log a message object with the DEBUG level. | public void | debug(String msg, Throwable ex) Log a message object with the DEBUG level. | public void | debug(String channel, String msg) Log a message object with the DEBUG level. | public void | debug(String channel, String msg, Throwable ex) Log a message object with the DEBUG level. | public void | error(String msg) Log a message object with the ERROR Level. | public void | error(String msg, Throwable ex) Log a message object with the ERROR Level. | public void | error(String channel, String msg) Log a message object with the ERROR Level. | public void | error(String channel, String msg, Throwable ex) Log a message object with the ERROR Level. | public void | info(String msg) Log a message object with the INFO Level. | public void | info(String msg, Throwable ex) Log a message object with the INFO Level. | public void | info(String channel, String msg) Log a message object with the INFO Level. | public void | info(String channel, String msg, Throwable ex) Log a message object with the INFO Level. | public void | warn(String msg) Log a message object with the WARN Level. | public void | warn(String msg, Throwable ex) Log a message object with the WARN Level. | public void | warn(String channel, String msg) Log a message object with the WARN Level. | public void | warn(String channel, String msg, Throwable ex) Log a message object with the WARN Level. |
debug | public void debug(String msg)(Code) | | Log a message object with the DEBUG level.
Parameters: msg - the message to log. |
debug | public void debug(String msg, Throwable ex)(Code) | | Log a message object with the DEBUG level.
Parameters: msg - the message to log. Parameters: ex - the exception to log, including its stack trace. |
debug | public void debug(String channel, String msg)(Code) | | Log a message object with the DEBUG level.
Parameters: channel - the log channel to be used for logging. Parameters: msg - the message to log. |
debug | public void debug(String channel, String msg, Throwable ex)(Code) | | Log a message object with the DEBUG level.
Parameters: channel - the log channel to be used for logging. Parameters: msg - the message to log. Parameters: ex - the exception to log, including its stack trace. |
error | public void error(String msg)(Code) | | Log a message object with the ERROR Level.
Parameters: msg - the message to log. |
error | public void error(String msg, Throwable ex)(Code) | | Log a message object with the ERROR Level.
Parameters: msg - the message to log. Parameters: ex - the exception to log, including its stack trace. |
error | public void error(String channel, String msg)(Code) | | Log a message object with the ERROR Level.
Parameters: channel - the log channel to be used for logging. Parameters: msg - the message to log. |
error | public void error(String channel, String msg, Throwable ex)(Code) | | Log a message object with the ERROR Level.
Parameters: channel - the log channel to be used for logging. Parameters: msg - the message to log. Parameters: ex - the exception to log, including its stack trace. |
info | public void info(String msg)(Code) | | Log a message object with the INFO Level.
Parameters: msg - the message to log. |
info | public void info(String msg, Throwable ex)(Code) | | Log a message object with the INFO Level.
Parameters: msg - the message to log. Parameters: ex - the exception to log, including its stack trace. |
info | public void info(String channel, String msg)(Code) | | Log a message object with the INFO Level.
Parameters: channel - the log channel to be used for logging. Parameters: msg - the message to log. |
info | public void info(String channel, String msg, Throwable ex)(Code) | | Log a message object with the INFO Level.
Parameters: channel - the log channel to be used for logging. Parameters: msg - the message to log. Parameters: ex - the exception to log, including its stack trace. |
warn | public void warn(String msg)(Code) | | Log a message object with the WARN Level.
Parameters: msg - the message to log. |
warn | public void warn(String msg, Throwable ex)(Code) | | Log a message object with the WARN Level.
Parameters: msg - the message to log. Parameters: ex - the exception to log, including its stack trace. |
warn | public void warn(String channel, String msg)(Code) | | Log a message object with the WARN Level.
Parameters: channel - the log channel to be used for logging. Parameters: msg - the message to log. |
warn | public void warn(String channel, String msg, Throwable ex)(Code) | | Log a message object with the WARN Level.
Parameters: channel - the log channel to be used for logging. Parameters: msg - the message to log. Parameters: ex - the exception to log, including its stack trace. |
|
|