-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathlogConfig.json
42 lines (42 loc) · 887 Bytes
/
logConfig.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
40
41
42
{
"appenders": {
"out": {
"type": "console"
},
"client": {
"type": "file",
"filename": "./client.log",
"maxLogSize": 104800,
"numBackups": 100
},
"server": {
"type": "file",
"filename": "./server.log",
"maxLogSize": 104800,
"numBackups": 100
}
},
"categories": {
"default": {
"appenders": [
"out"
],
"level": "all"
},
"server": {
"appenders": [
"out",
"server"
],
"level": "info"
},
"client": {
"appenders": [
"out",
"client"
],
"level": "info"
}
},
"replaceConsole": true
}