-
Notifications
You must be signed in to change notification settings - Fork 0
/
production.ini
53 lines (39 loc) · 1.03 KB
/
production.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
53
# For copyright and license terms, see COPYRIGHT.rst (top level of repository)
# Repository: https://github.com/C3S/collecting_society.portal.imp
###
# plugin configuration
###
[plugin:main]
plugin.priority = 200
###
# logging configuration
# http://docs.pylonsproject.org/projects/pyramid/en/1.5-branch/narr/logging.html
###
[loggers]
keys = root, collecting_society_portal_imp
[handlers]
keys = console
[formatters]
keys = generic, fullname, funcname, plain
[logger_root]
level = INFO
handlers = console
[logger_collecting_society_portal_imp]
level = ERROR
handlers =
qualname = collecting_society_portal_imp
[handler_console]
class = StreamHandler
args = (sys.stderr,)
level = NOTSET
formatter = fullname
[formatter_generic]
format = %(asctime)s %(levelname)-5.5s [%(name)s %(funcName)s] %(message)s
[formatter_fullname]
format =
--- %(levelname)s | %(name)s | %(funcName)s() ---------------------------------
%(message)s
[formatter_funcname]
format = %(levelname)s [%(funcName)s()] %(message)s
[formatter_plain]
format = %(message)s