-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathminecraft_forge.json
39 lines (39 loc) · 1.21 KB
/
minecraft_forge.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"minecraft_forge_log" : {
"title" : "minecraft",
"description" : "The log format used in minecraft forge server logs",
"url" : "",
"regex" : {
"std" : {
"pattern" : "^\\[(?<timestamp>\\d{2}:\\d{2}:\\d{2})\\] \\[(?<system>.*)\\/(?<level>\\w+)\\] \\[(?<module>.*)\\/((?<childmod>.+))?\\]: (?<body>.*)$"
}
},
"level-field" : "level",
"level" : {
"error" : "ERROR",
"warning" : "WARN",
"info" : "INFO",
"debug" : "DEBUG",
"trace" : "TRACE"
},
"value" : {
"system" : {
"kind" : "string",
"identifier" : true
},
"module" : {
"kind" : "string",
"identifier" : true
},
"childmod" : {
"kind" : "string",
"identifier" : true
}
},
"sample" : [
{
"line" : "[14:57:56] [Server thread/TRACE] [RTG/RTG]: Sent event FMLPostInitializationEvent to mod RTG"
}
]
}
}