-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathlog4js.json
executable file
·73 lines (73 loc) · 1.55 KB
/
log4js.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"appenders": [
{
"type": "file",
"filename": "app.log",
"maxLogSize": 524288,
"backups": 2,
"pollInterval": 10,
"category": ["app.js", "systemjs.js"]
},
{
"type": "file",
"filename": "common.log",
"maxLogSize": 524288,
"backups": 2,
"pollInterval": 15,
"category": ["console", "index.js", "profile.js", "auth.js", "photo.js", "photoCluster.js"]
},
{
"type": "file",
"filename": "region.log",
"maxLogSize": 524288,
"backups": 1,
"pollInterval": 15,
"category": ["region.js"]
},
{
"type": "file",
"filename": "404.log",
"maxLogSize": 524288,
"backups": 1,
"pollInterval": 10,
"category": ["404.js"]
},
{
"type": "file",
"filename": "error.log",
"maxLogSize": 524288,
"backups": 1,
"pollInterval": 10,
"category": ["error.js"]
},
{
"type": "file",
"filename": "photoConverter.log",
"maxLogSize": 524288,
"backups": 2,
"pollInterval": 15,
"category": ["photoConverter.js"]
},
{
"type": "file",
"filename": "uploader.log",
"maxLogSize": 524288,
"backups": 0,
"pollInterval": 15,
"category": ["uploader.js"]
},
{
"type": "file",
"filename": "subscriber.log",
"maxLogSize": 524288,
"backups": 1,
"pollInterval": 15,
"category": ["subscr.js"]
},
{
"type": "console",
"category": ["console", "app.js", "uploader.js", "index.js", "profile.js", "auth.js", "photo.js", "photoCluster.js", "systemjs.js"]
}
],
"replaceConsole": true
}