forked from kbaseattic/data_api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogging.conf
37 lines (37 loc) · 978 Bytes
/
logging.conf
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
version: 1
formatters:
basic:
format: "%(asctime)s [%(levelname)s] %(name)s: %(message)s"
handlers:
console:
class : logging.StreamHandler
formatter: basic
level : NOTSET
stream : ext://sys.stdout
file:
class : logging.handlers.RotatingFileHandler
formatter: basic
filename: /tmp/data_api.log
maxBytes: 65536
backupCount: 3
loggers:
root:
level: INFO
handlers: [console]
doekbase:
level: INFO
handlers: [console,file]
doekbase.data_api.annotation.genome_annotation.service:
level: DEBUG
handlers: [console,file]
propagate: 0
doekbase.data_api.sequence.assembly.service:
level: INFO
handlers: [console,file]
propagate: 0
doekbase.data_api.taxonomy.taxon.service:
level: INFO
handlers: [console,file]
propagate: 0
doekbase.data_api.annotation.genome_annotation.service.driver:
level: INFO