-
Notifications
You must be signed in to change notification settings - Fork 5
/
test-example.ini
52 lines (44 loc) · 1.11 KB
/
test-example.ini
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
52
#
# SFLvault - Pylons development environment configuration
#
# The %(here)s variable will be replaced with the parent directory of this file
#
[sflvault]
debug = true
# Uncomment and replace with the address which should receive any error reports
#email_to = [email protected]
smtp_server = localhost
error_email_from = paste@localhost
sflvault.vault.session_timeout = 99999999
sflvault.vault.setup_timeout = 1
sflvault.vault.session_trust = true
sqlalchemy.url = sqlite:///%(here)s/test-database.db
sflvault.port = 6555
# Logging configuration
[loggers]
keys = root, sflvault, sqlalchemy
[handlers]
keys = console
[formatters]
keys = generic
[logger_root]
level = INFO
handlers = console
[logger_sflvault]
level = DEBUG
handlers = console
qualname = sflvault
# SQLAlchemy logging from within paster shell
[logger_sqlalchemy]
# INFO or DEBUG for all SQL statements.
level = INFO
handlers =
qualname = sqlalchemy.engine
[handler_console]
class = StreamHandler
args = (sys.stderr,)
level = NOTSET
formatter = generic
[formatter_generic]
format = %(asctime)s,%(msecs)03d %(levelname)-5.5s [%(name)s] %(message)s
datefmt = %H:%M:%S