abstract boolean |
TracingLogger.isLogEnabled(TracingLogger.Event event) |
Test if a tracing support is enabled (according to propertiesDelegate setting) and
if event can be logged (according to event.level and threshold level set).
|
boolean |
TracingLogger.TracingLoggerImpl.isLogEnabled(TracingLogger.Event event) |
|
abstract void |
TracingLogger.log(TracingLogger.Event event,
java.lang.Object... args) |
Try to log event according to event level and request context threshold level setting.
|
void |
TracingLogger.TracingLoggerImpl.log(TracingLogger.Event event,
java.lang.Object... args) |
|
abstract void |
TracingLogger.logDuration(TracingLogger.Event event,
long fromTimestamp,
java.lang.Object... args) |
Try to log event according to event level and request context threshold level setting.
|
void |
TracingLogger.TracingLoggerImpl.logDuration(TracingLogger.Event event,
long fromTimestamp,
java.lang.Object... args) |
|
private void |
TracingLogger.TracingLoggerImpl.logImpl(TracingLogger.Event event,
long duration,
java.lang.Object... messageArgs) |
Log message for specified event type.
|
abstract long |
TracingLogger.timestamp(TracingLogger.Event event) |
If logging support is switched on for current request and event setting the method returns current timestamp in nanos.
|
long |
TracingLogger.TracingLoggerImpl.timestamp(TracingLogger.Event event) |
|
protected void |
InterceptorExecutor.traceAfter(T interceptor,
TracingLogger.Event event) |
Tracing support - log invocation of interceptor AFTER context.proceed() call.
|
protected void |
InterceptorExecutor.traceBefore(T interceptor,
TracingLogger.Event event) |
Tracing support - log invocation of interceptor BEFORE context.proceed() call.
|