protected abstract void |
DebugLogTee.adapt(LogLevel logLevel,
String message,
Class<?> clazz) |
Derived classes should provide code which routes the given message with the denoted logLevel and class to the desired log system.
|
protected abstract void |
DebugLogTee.adapt(LogLevel logLevel,
Throwable throwable,
Class<?> clazz) |
Derived classes should provide code which routes the given throwable with the denoted logLevel and class to the desired log system.
|
protected Level |
JDKLoggingRouter.convertToJDK14Level(LogLevel logLevel) |
|
void |
AbstractTracer.logException(LogLevel logLevel,
Throwable throwable,
Class<?> clazz,
String methodName) |
Logs an exception with the given logLevel and the originating class.
|
void |
DebugLogTee.logException(LogLevel logLevel,
Throwable throwable,
Class<?> clazz,
String methodName) |
|
void |
JDKLoggingRouter.logException(LogLevel logLevel,
Throwable throwable,
Class<?> clazz,
String methodName) |
Calls the Logger for the given clazz.
|
void |
Log4j2Router.logException(LogLevel logLevel,
Throwable throwable,
Class<?> clazz,
String methodName) |
This method gets itself a Log4j2 ExtendedLogger by invoking Log4j2s
LogManager with the given clazz.
|
void |
LogbackRouter.logException(LogLevel logLevel,
Throwable throwable,
Class<?> clazz,
String methodName) |
|
void |
NullTracer.logException(LogLevel logLevel,
Throwable throwable,
Class<?> clazz,
String methodName) |
Pseudo logException()-method.
|
void |
QueueTracer.logException(LogLevel logLevel,
Throwable throwable,
Class<?> clazz,
String methodName) |
Delegates to the corresponding method of the wrapped tracer.
|
void |
AbstractTracer.logMessage(LogLevel logLevel,
String message,
Class<?> clazz,
String methodName) |
Logs a message with the given logLevel and the originating class.
|
void |
DebugLogTee.logMessage(LogLevel logLevel,
String message,
Class<?> clazz,
String methodName) |
|
void |
JDKLoggingRouter.logMessage(LogLevel logLevel,
String message,
Class<?> clazz,
String methodName) |
Calls the Logger for the given clazz.
|
void |
Log4j2Router.logMessage(LogLevel logLevel,
String message,
Class<?> clazz,
String methodName) |
This method gets itself a Log4j2 ExtendedLogger by invoking Log4j2s
LogManager with the given clazz.
|
void |
LogbackRouter.logMessage(LogLevel logLevel,
String message,
Class<?> clazz,
String methodName) |
|
void |
NullTracer.logMessage(LogLevel logLevel,
String message,
Class<?> clazz,
String methodName) |
Pseudo logMessage()-method.
|
void |
QueueTracer.logMessage(LogLevel logLevel,
String message,
Class<?> clazz,
String methodName) |
Delegates to the corresponding method of the wrapped tracer.
|