Package ch.qos.logback.classic.spi
Class LoggingEventVO
- java.lang.Object
-
- ch.qos.logback.classic.spi.LoggingEventVO
-
- All Implemented Interfaces:
ILoggingEvent
,DeferredProcessingAware
,java.io.Serializable
@Deprecated(since="2022-01-27") public class LoggingEventVO extends java.lang.Object implements ILoggingEvent, java.io.Serializable
Deprecated.This internal logback API is not supported by AEM as a Cloud Service.A read-only and serializable implementation ofILoggingEvent
.- Since:
- 0.9.16
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description LoggingEventVO()
Deprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static LoggingEventVO
build(ILoggingEvent le)
Deprecated.boolean
equals(java.lang.Object obj)
Deprecated.java.lang.Object[]
getArgumentArray()
Deprecated.java.lang.StackTraceElement[]
getCallerData()
Deprecated.Return caller data associated with this event.long
getContextBirthTime()
Deprecated.LoggerContextVO
getContextLoggerRemoteView()
Deprecated.java.lang.String
getFormattedMessage()
Deprecated.Level
getLevel()
Deprecated.LoggerContextVO
getLoggerContextVO()
Deprecated.java.lang.String
getLoggerName()
Deprecated.Marker
getMarker()
Deprecated.java.util.Map<java.lang.String,java.lang.String>
getMdc()
Deprecated.Synonym for [@link #getMDCPropertyMap}.java.util.Map<java.lang.String,java.lang.String>
getMDCPropertyMap()
Deprecated.Returns the MDC map.java.lang.String
getMessage()
Deprecated.java.lang.String
getThreadName()
Deprecated.IThrowableProxy
getThrowableProxy()
Deprecated.long
getTimeStamp()
Deprecated.boolean
hasCallerData()
Deprecated.If this event has caller data, then true is returned.int
hashCode()
Deprecated.void
prepareForDeferredProcessing()
Deprecated.
-
-
-
Method Detail
-
build
public static LoggingEventVO build(ILoggingEvent le)
Deprecated.
-
getThreadName
public java.lang.String getThreadName()
Deprecated.- Specified by:
getThreadName
in interfaceILoggingEvent
-
getLoggerContextVO
public LoggerContextVO getLoggerContextVO()
Deprecated.- Specified by:
getLoggerContextVO
in interfaceILoggingEvent
-
getLoggerName
public java.lang.String getLoggerName()
Deprecated.- Specified by:
getLoggerName
in interfaceILoggingEvent
-
getLevel
public Level getLevel()
Deprecated.- Specified by:
getLevel
in interfaceILoggingEvent
-
getMessage
public java.lang.String getMessage()
Deprecated.- Specified by:
getMessage
in interfaceILoggingEvent
-
getFormattedMessage
public java.lang.String getFormattedMessage()
Deprecated.- Specified by:
getFormattedMessage
in interfaceILoggingEvent
-
getArgumentArray
public java.lang.Object[] getArgumentArray()
Deprecated.- Specified by:
getArgumentArray
in interfaceILoggingEvent
-
getThrowableProxy
public IThrowableProxy getThrowableProxy()
Deprecated.- Specified by:
getThrowableProxy
in interfaceILoggingEvent
-
getCallerData
public java.lang.StackTraceElement[] getCallerData()
Deprecated.Description copied from interface:ILoggingEvent
Return caller data associated with this event. Note that calling this event may trigger the computation of caller data.- Specified by:
getCallerData
in interfaceILoggingEvent
- Returns:
- the caller data associated with this event.
- See Also:
ILoggingEvent.hasCallerData()
-
hasCallerData
public boolean hasCallerData()
Deprecated.Description copied from interface:ILoggingEvent
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
ILoggingEvent.getCallerData()
.- Specified by:
hasCallerData
in interfaceILoggingEvent
- Returns:
- whether this event has caller data
-
getMarker
public Marker getMarker()
Deprecated.- Specified by:
getMarker
in interfaceILoggingEvent
-
getTimeStamp
public long getTimeStamp()
Deprecated.- Specified by:
getTimeStamp
in interfaceILoggingEvent
-
getContextBirthTime
public long getContextBirthTime()
Deprecated.
-
getContextLoggerRemoteView
public LoggerContextVO getContextLoggerRemoteView()
Deprecated.
-
getMDCPropertyMap
public java.util.Map<java.lang.String,java.lang.String> getMDCPropertyMap()
Deprecated.Description copied from interface:ILoggingEvent
Returns the MDC map. The returned value can be an empty map but not null.- Specified by:
getMDCPropertyMap
in interfaceILoggingEvent
-
getMdc
public java.util.Map<java.lang.String,java.lang.String> getMdc()
Deprecated.Description copied from interface:ILoggingEvent
Synonym for [@link #getMDCPropertyMap}.- Specified by:
getMdc
in interfaceILoggingEvent
-
prepareForDeferredProcessing
public void prepareForDeferredProcessing()
Deprecated.- Specified by:
prepareForDeferredProcessing
in interfaceDeferredProcessingAware
- Specified by:
prepareForDeferredProcessing
in interfaceILoggingEvent
-
hashCode
public int hashCode()
Deprecated.- Overrides:
hashCode
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
Deprecated.- Overrides:
equals
in classjava.lang.Object
-
-