public interface ILogger
EASyLoggerFactory.| Modifier and Type | Method and Description |
|---|---|
void |
debug(java.lang.String msg,
java.lang.Class<?> clazz,
java.lang.String bundleName)
Log an DEBUG message.
|
void |
error(java.lang.String msg,
java.lang.Class<?> clazz,
java.lang.String bundleName)
Log an ERROR message.
|
void |
exception(java.lang.String msg,
java.lang.Class<?> clazz,
java.lang.String bundleName)
Log an EXCEPTION message.
|
void |
info(java.lang.String msg,
java.lang.Class<?> clazz,
java.lang.String bundleName)
Log an INFO message.
|
void |
warn(java.lang.String msg,
java.lang.Class<?> clazz,
java.lang.String bundleName)
Log an WARN message.
|
void info(java.lang.String msg,
java.lang.Class<?> clazz,
java.lang.String bundleName)
If the logger is currently enabled for the INFO message level then the given message is forwarded to all the registered output Handler objects.
msg - The string message (or a key in the message catalog)clazz - The class where the message was createdbundleName - Name of the bundle where the message was createdvoid error(java.lang.String msg,
java.lang.Class<?> clazz,
java.lang.String bundleName)
If the logger is currently enabled for the ERROR message level then the given message is forwarded to all the registered output Handler objects.
msg - The string message (or a key in the message catalog)clazz - The class where the message was createdbundleName - Name of the bundle where the message was createdvoid warn(java.lang.String msg,
java.lang.Class<?> clazz,
java.lang.String bundleName)
If the logger is currently enabled for the WARN message level then the given message is forwarded to all the registered output Handler objects.
msg - The string message (or a key in the message catalog)clazz - The class where the message was createdbundleName - Name of the bundle where the message was createdvoid debug(java.lang.String msg,
java.lang.Class<?> clazz,
java.lang.String bundleName)
If the logger is currently enabled for the DEBUG message level then the given message is forwarded to all the registered output Handler objects.
msg - The string message (or a key in the message catalog)clazz - The class where the message was createdbundleName - Name of the bundle where the message was createdvoid exception(java.lang.String msg,
java.lang.Class<?> clazz,
java.lang.String bundleName)
If the logger is currently enabled for the EXCEPTION message level then the given message is forwarded to all the registered output Handler objects.
msg - The string message (or a key in the message catalog)clazz - The class where the message was createdbundleName - Name of the bundle where the message was createdCopyright © 2009 - 2018 SSE. All Rights Reserved.