aboutsummaryrefslogtreecommitdiffstats
path: root/etc/log4js.json
blob: 5916344cf9e486d3e682aed473a982ecfbb257b5 (plain)
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
{
	"appenders": 
	[
		{
			"type": "file",
			"filename": "log/audit.log",
			"maxLogSize": 10240000,
			"backups": 10,
			"category": ["audit"],
			"layout": 
			{
				"type": "messagePassThrough"
			}
		},
		
		{
			"type": "file",
			"filename": "log/metrics.log",
			"maxLogSize": 10240000,
			"backups": 10,
			"category": ["metrics"],
			"layout": 
			{
				"type": "messagePassThrough"
			}
		},	
		
		{
			"type": "file",
			"filename": "log/error.log",
			"maxLogSize": 10240000,
			"backups": 10,
			"category": ["error"],
			"layout": 
			{
				"type": "messagePassThrough"
			}
		},
		
		{
			"type": "file",
			"filename": "log/debug.log",
			"maxLogSize": 10240000,
			"backups": 10,
			"category": ["debug"],
			"layout": 
			{
				"type": "messagePassThrough"
			}
		}	
	]
}