File tree Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Expand file tree Collapse file tree 1 file changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -36,23 +36,21 @@ export type LogFacesLayoutFunction = (
36
36
/** [Data model: Log events](http://www.moonlit-software.com/logfaces/downloads/logfaces-manual.pdf) */
37
37
export interface LogFacesEvent {
38
38
/** Time stamp as specified by the source or server */
39
- t ?: number ;
40
- /** Sequence number, each event produced by logFaces has running sequence number */
41
- q ?: number ;
39
+ t : number ;
42
40
/** Severity of event expressed in term of log4j levels */
43
- p ? : number | string ;
41
+ p : number | string ;
44
42
/** Name of the domain (or application) originating the event */
45
- a ? : string ;
43
+ a : string ;
46
44
/** Name of the host originating the event */
47
45
h ?: string ;
48
46
/** Name of the logger (class, module, etc) originating the event */
49
- g ? : string ;
47
+ g : string ;
50
48
/** Name of the thread originating the event */
51
49
r ?: string ;
52
50
/** Message Content */
53
51
m ?: string ;
54
52
/** [Network Diagnostic Context](http://logging.apache.org/log4j/1.2/apidocs/org/apache/log4j/NDC.html) */
55
- n ?: string ;
53
+ n ?: unknown ;
56
54
/** Indication whether the event is a thrown exception */
57
55
w ?: boolean ;
58
56
/** Stack trace of thrown exceptions */
You can’t perform that action at this time.
0 commit comments