summaryrefslogtreecommitdiff
path: root/caddytest/integration/caddyfile_adapt/global_options_debug_with_access_log.txt
blob: 772cd089b70c949454b525d6b6fe431991dfb35c (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
{
	debug
}

:8881 {
	log {
		format console
	}
}
----------
{
	"logging": {
		"logs": {
			"default": {
				"level": "DEBUG",
				"exclude": [
					"http.log.access.log0"
				]
			},
			"log0": {
				"encoder": {
					"format": "console"
				},
				"level": "DEBUG",
				"include": [
					"http.log.access.log0"
				]
			}
		}
	},
	"apps": {
		"http": {
			"servers": {
				"srv0": {
					"listen": [
						":8881"
					],
					"logs": {
						"default_logger_name": "log0"
					}
				}
			}
		}
	}
}