diff --git a/slf4j-api/src/main/java/org/slf4j/event/LoggingEvent.java b/slf4j-api/src/main/java/org/slf4j/event/LoggingEvent.java index 434b2d18b..a33a708ca 100755 --- a/slf4j-api/src/main/java/org/slf4j/event/LoggingEvent.java +++ b/slf4j-api/src/main/java/org/slf4j/event/LoggingEvent.java @@ -17,24 +17,27 @@ public interface LoggingEvent { String getLoggerName(); + /** Log message, might be null. */ String getMessage(); + /** List of arguments in the event, might be null. */ List getArguments(); + /** Array of arguments in the event, might be null. */ Object[] getArgumentArray(); - /** - * List of markers in the event, might be null. - * @return markers in the event, might be null. - */ + /** List of markers in the event, might be null. */ List getMarkers(); + /** List of key-value pairs in the event, might be null. */ List getKeyValuePairs(); + /** Cause exception, might be null. */ Throwable getThrowable(); long getTimeStamp(); + /** Name of thread that made the log, might be null. */ String getThreadName(); /**