-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevelopment.ini
More file actions
55 lines (42 loc) · 889 Bytes
/
development.ini
File metadata and controls
55 lines (42 loc) · 889 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[app:main]
use = egg:webhook
pyramid.reload_templates = true
[server:main]
use = egg:gunicorn#main
host = 0.0.0.0
port = 5100
[loggers]
keys = root, gunicorn_access, gunicorn_error, pyramid_weblayer
[handlers]
keys = console, access
[formatters]
keys = generic, access
[logger_root]
level = INFO
handlers = console
[logger_gunicorn_access]
level = INFO
handlers = access
propagate = 0
qualname = gunicorn.access
[logger_gunicorn_error]
level = WARN
handlers =
qualname = gunicorn.error
[logger_pyramid_weblayer]
level = INFO
handlers =
qualname = pyramid_weblayer
[handler_console]
class = StreamHandler
args = (sys.stderr,)
level = NOTSET
formatter = generic
[handler_access]
class = StreamHandler
args = (sys.stdout,)
formatter = access
[formatter_generic]
format = %(asctime)s %(levelname)-5.5s [%(name)s][%(threadName)s] %(message)s
[formatter_access]
format=%(message)s