-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathlogging.json
More file actions
121 lines (121 loc) · 2.22 KB
/
logging.json
File metadata and controls
121 lines (121 loc) · 2.22 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"includes": [],
"sinks": [{
"name": "stderr_color_st",
"type": "stderr_color_sink_st",
"args": {
"level_colors": [{
"level": "debug",
"color": "green"
},{
"level": "info",
"color": "reset"
},{
"level": "warn",
"color": "yellow"
},{
"level": "error",
"color": "red"
}
]
}
},{
"name": "daily_file_sink",
"type": "daily_file_sink_mt",
"args": {
"base_filename": "./logs/daily.log",
"rotation_hour": 0,
"rotation_minute": 0,
"truncate": false,
"max_files": 0
}
},{
"name": "rotate_file_sink",
"type": "rotating_file_sink_mt",
"args": {
"base_filename": "./logs/rotate.log",
"max_size": 10,
"max_file": 10
}
}
],
"loggers": [{
"name": "default",
"level": "debug",
"sinks": [
"stderr_color_st"
],
"sync_type": "sync"
},{
"name": "net_plugin_impl",
"level": "info",
"sinks": [
"stderr_color_st"
],
"sync_type": "sync"
},{
"name": "http_plugin",
"level": "debug",
"sinks": [
"stderr_color_st"
],
"sync_type": "sync"
},{
"name": "producer_plugin",
"level": "debug",
"sinks": [
"stderr_color_st"
],
"sync_type": "sync"
},{
"name": "transaction_success_tracing",
"level": "debug",
"sinks": [
"stderr_color_st"
],
"sync_type": "sync"
},{
"name": "transaction_failure_tracing",
"level": "debug",
"sinks": [
"stderr_color_st"
],
"sync_type": "sync"
},{
"name": "transaction_trace_success",
"level": "info",
"sinks": [
"stderr_color_st"
],
"sync_type": "sync"
},{
"name": "transaction_trace_failure",
"level": "info",
"sinks": [
"stderr_color_st"
],
"sync_type": "sync"
},{
"name": "transaction",
"level": "info",
"sinks": [
"stderr_color_st"
],
"sync_type": "sync"
},{
"name": "state_history",
"level": "debug",
"sinks": [
"stderr_color_st"
],
"sync_type": "sync"
},{
"name": "trace_api",
"level": "debug",
"sinks": [
"stderr_color_st"
],
"sync_type": "sync"
}
]
}