Package org.slf4j.event
Interface LoggingEvent
-
- All Known Implementing Classes:
DefaultLoggingEvent,SubstituteLoggingEvent
public interface LoggingEventThe 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 Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description Object[]getArgumentArray()List<Object>getArguments()default StringgetCallerBoundary()Returns the presumed caller boundary provided by the logging library (not the user of the library).List<KeyValuePair>getKeyValuePairs()LevelgetLevel()StringgetLoggerName()List<Marker>getMarkers()StringgetMessage()StringgetThreadName()ThrowablegetThrowable()longgetTimeStamp()
-
-
-
Method Detail
-
getLevel
Level getLevel()
-
getLoggerName
String getLoggerName()
-
getMessage
String getMessage()
-
getArgumentArray
Object[] getArgumentArray()
-
getKeyValuePairs
List<KeyValuePair> getKeyValuePairs()
-
getThrowable
Throwable getThrowable()
-
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.
-
-