-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy patharchiver-log.json
More file actions
35 lines (35 loc) · 879 Bytes
/
archiver-log.json
File metadata and controls
35 lines (35 loc) · 879 Bytes
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
{
"saveConsoleOutput": true,
"dir": "archiver-logs",
"files": { "main": "", "fatal": "", "net": "" },
"options": {
"appenders": {
"out": { "type": "console", "maxLogSize": 10000000, "backups": 50 },
"main": {
"type": "file",
"maxLogSize": 10000000,
"backups": 50
},
"fatal": {
"type": "file",
"maxLogSize": 10000000,
"backups": 50
},
"errorFile": {
"type": "file",
"maxLogSize": 10000000,
"backups": 50
},
"errors": {
"type": "logLevelFilter",
"level": "ERROR",
"appender": "errorFile"
}
},
"categories": {
"default": { "appenders": ["out"], "level": "trace" },
"main": { "appenders": ["main", "errors"], "level": "trace" },
"fatal": { "appenders": ["fatal"], "level": "fatal" }
}
}
}