File size: 550 Bytes
b3d3593
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
version = 1

disable_existing_loggers = false

[root]
level = "DEBUG"
handlers = ["debug_file", "errors_file"]

[formatters.simple]
format = '%(asctime)s - %(name)s - %(levelname)s - %(message)s'

[handlers.debug_file]
class = "logging.handlers.TimedRotatingFileHandler"
level = "DEBUG"
formatter = "simple"
filename = "logs/debug.log"
when = "midnight"
encoding = "utf8"

[handlers.errors_file]
class = "logging.handlers.TimedRotatingFileHandler"
level = "ERROR"
formatter = "simple"
filename = "logs/errors.log"
when = "midnight"
encoding = "utf8"