forked from mesoscope/cellpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogging.conf
51 lines (40 loc) · 861 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[loggers]
keys=root,env,ingredient,grid,recipe,autopack,compartment
[handlers]
keys=consoleHandler
[formatters]
keys=simpleFormatter
[logger_root]
level=INFO
handlers=consoleHandler
[logger_autopack]
level=CRITICAL
qualname=autopack
handlers=consoleHandler
[logger_compartment]
level=CRITICAL
qualname=compartment
handlers=consoleHandler
[logger_env]
level=CRITICAL
qualname=env
handlers=consoleHandler
[logger_grid]
level=CRITICAL
qualname=grid
handlers=consoleHandler
[logger_ingredient]
level=CRITICAL
qualname=ingredient
handlers=consoleHandler
[logger_recipe]
level=CRITICAL
qualname=recipe
handlers=consoleHandler
[handler_consoleHandler]
class=StreamHandler
formatter=simpleFormatter
args=(sys.stdout,)
[formatter_simpleFormatter]
format=%(asctime)s - %(name)s - %(levelname)s - %(filename)s:%(lineno)s - %(funcName)20s(): %(message)s
datefmt=