Interface ILoggingEvent

    • Method Detail

      • getThreadName

        java.lang.String getThreadName()
      • getLevel

        Level getLevel()
      • getMessage

        java.lang.String getMessage()
      • getArgumentArray

        java.lang.Object[] getArgumentArray()
      • getFormattedMessage

        java.lang.String getFormattedMessage()
      • getLoggerName

        java.lang.String getLoggerName()
      • getCallerData

        java.lang.StackTraceElement[] getCallerData()
        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()
      • hasCallerData

        boolean hasCallerData()
        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()
      • getMDCPropertyMap

        java.util.Map<java.lang.String,​java.lang.String> getMDCPropertyMap()
        Returns the MDC map. The returned value can be an empty map but not null.
      • getMdc

        java.util.Map<java.lang.String,​java.lang.String> getMdc()
        Deprecated.
        Replaced by [@link #getMDCPropertyMap}
        Synonym for [@link #getMDCPropertyMap}.
      • getTimeStamp

        long getTimeStamp()