summaryrefslogtreecommitdiff
path: root/caddytest/integration/caddyfile_adapt/global_options_log_multi.txt
blob: c20251ab8d16c0a137b8d753ca14e3e0eef9bc3b (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
{
	log first {
		output file foo.log
	}
	log second {
		format json
	}
}
----------
{
	"logging": {
		"logs": {
			"first": {
				"writer": {
					"filename": "foo.log",
					"output": "file"
				}
			},
			"second": {
				"encoder": {
					"format": "json"
				}
			}
		}
	}
}