-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogging_config.json
38 lines (38 loc) · 932 Bytes
/
logging_config.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
{
"version": 1,
"disable_existing_loggers": false,
"formatters": {
"unified": {
"format": "",
"datefmt": "%Y-%m-%dT%H:%M:%S"
}
},
"handlers": {
"file_handler_main": {
"class": "logging.FileHandler",
"level": "INFO",
"formatter": "unified",
"filename": "",
"mode": "a",
"encoding": "utf-8"
},
"file_handler_alt": {
"class": "logging.FileHandler",
"level": "INFO",
"formatter": "unified",
"filename": "",
"mode": "a",
"encoding": "utf-8"
},
"queue_handler": {
"class": "logging.handlers.QueueHandler",
"formatter": "unified"
}
},
"loggers": {
"root": {
"handlers": ["queue_handler"],
"level": "INFO"
}
}
}