File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed
slf4j-api/src/main/java/org/slf4j/event Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -17,24 +17,27 @@ public interface LoggingEvent {
1717
1818 String getLoggerName ();
1919
20+ /** Log message, might be null. */
2021 String getMessage ();
2122
23+ /** List of arguments in the event, might be null. */
2224 List <Object > getArguments ();
2325
26+ /** Array of arguments in the event, might be null. */
2427 Object [] getArgumentArray ();
2528
26- /**
27- * List of markers in the event, might be null.
28- * @return markers in the event, might be null.
29- */
29+ /** List of markers in the event, might be null. */
3030 List <Marker > getMarkers ();
3131
32+ /** List of key-value pairs in the event, might be null. */
3233 List <KeyValuePair > getKeyValuePairs ();
3334
35+ /** Cause exception, might be null. */
3436 Throwable getThrowable ();
3537
3638 long getTimeStamp ();
3739
40+ /** Name of thread that made the log, might be null. */
3841 String getThreadName ();
3942
4043 /**
You can’t perform that action at this time.
0 commit comments