Entry point for rpc server, view templates, rss feeds of node down times,
[monitor.git] / web / MonitorWeb / test.cfg
1 [global]
2 # You can place test-specific configuration options here (like test db uri, etc)
3
4 # DATABASE
5
6 sqlalchemy.dburi = "sqlite:///:memory:"
7
8 # LOGGING
9
10 [logging]
11
12 [[formatters]]
13 [[[full_content]]]
14 format='*(asctime)s *(name)s *(levelname)s *(message)s'
15
16 [[handlers]]
17 [[[test_out]]]
18 class='StreamHandler'
19 level='DEBUG'
20 args='(sys.stdout,)'
21 formatter='full_content'
22
23 [[loggers]]
24 [[[monitorweb]]]
25 level='DEBUG'
26 qualname='monitorweb'
27 handlers=['test_out']
28
29 [[[turbogears]]]
30 level='INFO'
31 qualname='turbogears'
32 handlers=['test_out']