|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.marketcetera.util.log.SLF4JLoggerProxy
public final class SLF4JLoggerProxy
SLF4J proxy with automatic logger selection and variable number of arguments.
| Field Summary | |
|---|---|
static String |
UNKNOWN_LOGGER_NAME
The name of the category used when no category is explicitly specified. |
static String |
UNKNOWN_MESSAGE
The logging message used when none is explicitly specified. |
| Method Summary | |
|---|---|
static void |
debug(Object category,
String message)
Logs the given message under the given logging category at the debugging level. |
static void |
debug(Object category,
String message,
Object... params)
Logs the given parameterized message under the given logging category at the debugging level. |
static void |
debug(Object category,
String message,
Throwable throwable)
Logs the given message and throwable under the given logging category at the debugging level. |
static void |
debug(Object category,
Throwable throwable)
Logs the given throwable under the given logging category at the debugging level. |
static void |
debug(Object category,
Throwable throwable,
String message,
Object... params)
Logs the given parameterized message and throwable under the given logging category at the debugging level. |
static void |
error(Object category,
String message)
Logs the given message under the given logging category at the error level. |
static void |
error(Object category,
String message,
Object... params)
Logs the given parameterized message under the given logging category at the error level. |
static void |
error(Object category,
String message,
Throwable throwable)
Logs the given message and throwable under the given logging category at the error level. |
static void |
error(Object category,
Throwable throwable)
Logs the given throwable under the given logging category at the error level. |
static void |
error(Object category,
Throwable throwable,
String message,
Object... params)
Logs the given parameterized message and throwable under the given logging category at the error level. |
static void |
info(Object category,
String message)
Logs the given message under the given logging category at the informational level. |
static void |
info(Object category,
String message,
Object... params)
Logs the given parameterized message under the given logging category at the informational level. |
static void |
info(Object category,
String message,
Throwable throwable)
Logs the given message and throwable under the given logging category at the informational level. |
static void |
info(Object category,
Throwable throwable)
Logs the given throwable under the given logging category at the informational level. |
static void |
info(Object category,
Throwable throwable,
String message,
Object... params)
Logs the given parameterized message and throwable under the given logging category at the informational level. |
static boolean |
isDebugEnabled(Object category)
Returns true if logging of debugging messages is enabled for the given logging category. |
static boolean |
isErrorEnabled(Object category)
Returns true if logging of error messages is enabled for the given logging category. |
static boolean |
isInfoEnabled(Object category)
Returns true if logging of informational messages is enabled for the given logging category. |
static boolean |
isTraceEnabled(Object category)
Returns true if logging of tracing messages is enabled for the given logging category. |
static boolean |
isWarnEnabled(Object category)
Returns true if logging of warning messages is enabled for the given logging category. |
static void |
trace(Object category,
String message)
Logs the given message under the given logging category at the tracing level. |
static void |
trace(Object category,
String message,
Object... params)
Logs the given parameterized message under the given logging category at the tracing level. |
static void |
trace(Object category,
String message,
Throwable throwable)
Logs the given message and throwable under the given logging category at the tracing level. |
static void |
trace(Object category,
Throwable throwable)
Logs the given throwable under the given logging category at the tracing level. |
static void |
trace(Object category,
Throwable throwable,
String message,
Object... params)
Logs the given parameterized message and throwable under the given logging category at the tracing level. |
static void |
warn(Object category,
String message)
Logs the given message under the given logging category at the warning level. |
static void |
warn(Object category,
String message,
Object... params)
Logs the given parameterized message under the given logging category at the warning level. |
static void |
warn(Object category,
String message,
Throwable throwable)
Logs the given message and throwable under the given logging category at the warning level. |
static void |
warn(Object category,
Throwable throwable)
Logs the given throwable under the given logging category at the warning level. |
static void |
warn(Object category,
Throwable throwable,
String message,
Object... params)
Logs the given parameterized message and throwable under the given logging category at the warning level. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
public static final String UNKNOWN_MESSAGE
public static final String UNKNOWN_LOGGER_NAME
| Method Detail |
|---|
public static boolean isErrorEnabled(Object category)
category - The category.
public static void error(Object category,
String message)
category - The category.message - The message.
public static void error(Object category,
Throwable throwable)
category - The category.throwable - The throwable.
public static void error(Object category,
String message,
Throwable throwable)
category - The category.message - The message.throwable - The throwable.
public static void error(Object category,
String message,
Object... params)
category - The category.message - The message.params - The message parameters.
public static void error(Object category,
Throwable throwable,
String message,
Object... params)
category - The category.throwable - The throwable.message - The message.params - The message parameters.public static boolean isWarnEnabled(Object category)
category - The category.
public static void warn(Object category,
String message)
category - The category.message - The message.
public static void warn(Object category,
Throwable throwable)
category - The category.throwable - The throwable.
public static void warn(Object category,
String message,
Throwable throwable)
category - The category.message - The message.throwable - The throwable.
public static void warn(Object category,
String message,
Object... params)
category - The category.message - The message.params - The message parameters.
public static void warn(Object category,
Throwable throwable,
String message,
Object... params)
category - The category.throwable - The throwable.message - The message.params - The message parameters.public static boolean isInfoEnabled(Object category)
category - The category.
public static void info(Object category,
String message)
category - The category.message - The message.
public static void info(Object category,
Throwable throwable)
category - The category.throwable - The throwable.
public static void info(Object category,
String message,
Throwable throwable)
category - The category.message - The message.throwable - The throwable.
public static void info(Object category,
String message,
Object... params)
category - The category.message - The message.params - The message parameters.
public static void info(Object category,
Throwable throwable,
String message,
Object... params)
category - The category.throwable - The throwable.message - The message.params - The message parameters.public static boolean isDebugEnabled(Object category)
category - The category.
public static void debug(Object category,
String message)
category - The category.message - The message.
public static void debug(Object category,
Throwable throwable)
category - The category.throwable - The throwable.
public static void debug(Object category,
String message,
Throwable throwable)
category - The category.message - The message.throwable - The throwable.
public static void debug(Object category,
String message,
Object... params)
category - The category.message - The message.params - The message parameters.
public static void debug(Object category,
Throwable throwable,
String message,
Object... params)
category - The category.throwable - The throwable.message - The message.params - The message parameters.public static boolean isTraceEnabled(Object category)
category - The category.
public static void trace(Object category,
String message)
category - The category.message - The message.
public static void trace(Object category,
Throwable throwable)
category - The category.throwable - The throwable.
public static void trace(Object category,
String message,
Throwable throwable)
category - The category.message - The message.throwable - The throwable.
public static void trace(Object category,
String message,
Object... params)
category - The category.message - The message.params - The message parameters.
public static void trace(Object category,
Throwable throwable,
String message,
Object... params)
category - The category.throwable - The throwable.message - The message.params - The message parameters.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||