Interface LoggingEvent

  • All Known Implementing Classes:
    DefaultLoggingEvent, SubstituteLoggingEvent

    public interface LoggingEvent
    The minimal interface sufficient for the restitution of data passed by the user to the SLF4J API.
    Since:
    1.7.15
    Author:
    Ceki Gülcü
    • Method Detail

      • getLevel

        Level getLevel()
      • getLoggerName

        String getLoggerName()
      • getMessage

        String getMessage()
      • getArgumentArray

        Object[] getArgumentArray()
      • getTimeStamp

        long getTimeStamp()
      • getThreadName

        String getThreadName()
      • getCallerBoundary

        default String getCallerBoundary()
        Returns the presumed caller boundary provided by the logging library (not the user of the library). Null by default.
        Returns:
        presumed caller, null by default.