-
Notifications
You must be signed in to change notification settings - Fork 2
/
log_cfg.json
59 lines (59 loc) · 1.41 KB
/
log_cfg.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
{
"version": 1,
"handlers": {
"standard": {
"class": "logging.StreamHandler",
"level": "DEBUG",
"formatter": "json",
"filters": ["context_filter"]
}
},
"filters": {
"context_filter": {
"()": "common.utils.json_logger.ContextFilter"
}
},
"formatters": {
"json": {
"format": "%(message)s",
"class": "common.utils.json_logger.JSONFormatter"
}
},
"loggers": {
"proxy": {
"level": "DEBUG",
"handlers": ["standard"],
"propagate": false
},
"proxy_client": {
"level": "DEBUG",
"handlers": ["standard"],
"propagate": false
},
"indexer": {
"level": "DEBUG",
"handlers": ["standard"],
"propagate": false
},
"indexer_client": {
"level": "DEBUG",
"handlers": ["standard"],
"propagate": false
},
"common": {
"level": "DEBUG",
"handlers": ["standard"],
"propagate": false
},
"tests": {
"level": "DEBUG",
"handlers": ["standard"],
"propagate": false
},
"": {
"level": "INFO",
"handlers": ["standard"],
"propagate": false
}
}
}