File tree 1 file changed +7
-4
lines changed
slf4j-api/src/main/java/org/slf4j/event
1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -17,24 +17,27 @@ public interface LoggingEvent {
17
17
18
18
String getLoggerName ();
19
19
20
+ /** Log message, might be null. */
20
21
String getMessage ();
21
22
23
+ /** List of arguments in the event, might be null. */
22
24
List <Object > getArguments ();
23
25
26
+ /** Array of arguments in the event, might be null. */
24
27
Object [] getArgumentArray ();
25
28
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. */
30
30
List <Marker > getMarkers ();
31
31
32
+ /** List of key-value pairs in the event, might be null. */
32
33
List <KeyValuePair > getKeyValuePairs ();
33
34
35
+ /** Cause exception, might be null. */
34
36
Throwable getThrowable ();
35
37
36
38
long getTimeStamp ();
37
39
40
+ /** Name of thread that made the log, might be null. */
38
41
String getThreadName ();
39
42
40
43
/**
You can’t perform that action at this time.
0 commit comments