Package ch.qos.logback.classic.spi
Interface ILoggingEvent
- All Superinterfaces:
DeferredProcessingAware
- All Known Implementing Classes:
LoggingEvent
,LoggingEventVO
Deprecated.
This internal logback API is not supported by AEM as a Cloud Service.
The central interface in logback-classic. In a nutshell, logback-classic is
nothing more than a processing chain built around this interface.
- Since:
- 0.9.16
-
Method Summary
Modifier and TypeMethodDescriptionObject[]
Deprecated.Deprecated.Return caller data associated with this event.Deprecated.getLevel()
Deprecated.Deprecated.Deprecated.Deprecated.getMdc()
Deprecated.Replaced by [@link #getMDCPropertyMap}Deprecated.Returns the MDC map.Deprecated.Deprecated.Deprecated.long
Deprecated.boolean
Deprecated.If this event has caller data, then true is returned.void
Deprecated.
-
Method Details
-
getThreadName
String getThreadName()Deprecated. -
getLevel
Level getLevel()Deprecated. -
getMessage
String getMessage()Deprecated. -
getArgumentArray
Object[] getArgumentArray()Deprecated. -
getFormattedMessage
String getFormattedMessage()Deprecated. -
getLoggerName
String getLoggerName()Deprecated. -
getLoggerContextVO
LoggerContextVO getLoggerContextVO()Deprecated. -
getThrowableProxy
IThrowableProxy getThrowableProxy()Deprecated. -
getCallerData
StackTraceElement[] getCallerData()Deprecated.Return caller data associated with this event. Note that calling this event may trigger the computation of caller data.- Returns:
- the caller data associated with this event.
- See Also:
-
hasCallerData
boolean hasCallerData()Deprecated.If this event has caller data, then true is returned. Otherwise the returned value is null.Logback components wishing to use caller data if available without causing it to be computed can invoke this method before invoking
getCallerData()
.- Returns:
- whether this event has caller data
-
getMarker
Marker getMarker()Deprecated. -
getMDCPropertyMap
Deprecated.Returns the MDC map. The returned value can be an empty map but not null. -
getMdc
Deprecated.Replaced by [@link #getMDCPropertyMap}Synonym for [@link #getMDCPropertyMap}. -
getTimeStamp
long getTimeStamp()Deprecated. -
prepareForDeferredProcessing
void prepareForDeferredProcessing()Deprecated.- Specified by:
prepareForDeferredProcessing
in interfaceDeferredProcessingAware
-