-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathlogging.config
More file actions
38 lines (38 loc) · 886 Bytes
/
logging.config
File metadata and controls
38 lines (38 loc) · 886 Bytes
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
formatters:
simple:
format: '%(asctime)s - %(name)s - %(levelname)s - %(message)s'
handlers:
console:
class: logging.StreamHandler
level: DEBUG
formatter: simple
stream: ext://sys.stdout
info_file_handler:
class: logging.handlers.RotatingFileHandler
level: INFO
formatter: simple
filename: ./logs/db_update_info.log
maxBytes: 10485760 # 10MB
backupCount: 20
encoding: utf8
rotate_file_handler2:
class: logging.handlers.RotatingFileHandler
level: DEBUG
formatter: simple
filename: ./logs/app_search_info.log
maxBytes: 10485760 # 10MB
backupCount: 20
encoding: utf8
loggers:
Trie_db:
level: INFO
handlers: [info_file_handler]
propagate: no
Trie_db.insert:
level: DEBUG
handlers: [rotate_file_handler2]
propagate: no
root:
level: DEBUG
handlers: [console]