-
Notifications
You must be signed in to change notification settings - Fork 0
/
logging.json
38 lines (38 loc) · 854 Bytes
/
logging.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,
"loggers": {
"root": {
"handlers": ["console"],
"level": "INFO"
},
"ktxo.app": {
"propagate": false,
"handlers": ["console", "file"],
"level": "INFO"
}
},
"formatters": {
"basic": {
"class": "logging.Formatter",
"datefmt":"%Y-%m-%d %H:%M:%S",
"format": "%(asctime)s.%(msecs)03d %(levelname)s %(thread)d %(threadName)s %(module)s - %(funcName)s: %(message)s"
},
"raw": {
"class": "logging.Formatter",
"format": "%(message)s"
}
},
"handlers": {
"console": {
"class": "logging.StreamHandler",
"formatter": "basic"
},
"file": {
"class": "logging.handlers.RotatingFileHandler",
"formatter": "basic",
"filename": "main-template.log",
"backupCount": 10,
"maxBytes": 10485760
}
}
}