mirror of
https://github.com/wassname/pyramid_formalchemy.git
synced 2026-06-26 16:00:51 +08:00
45 lines
728 B
INI
45 lines
728 B
INI
[app:pyramid_formalchemy]
|
|
use = egg:pyramid_formalchemy
|
|
reload_templates = true
|
|
debug_authorization = false
|
|
debug_notfound = false
|
|
debug_routematch = false
|
|
debug_templates = true
|
|
default_locale_name = en
|
|
|
|
[pipeline:main]
|
|
pipeline =
|
|
egg:WebError#evalerror
|
|
pyramid_formalchemy
|
|
|
|
[server:main]
|
|
use = egg:Paste#http
|
|
host = 0.0.0.0
|
|
port = 6543
|
|
|
|
# Begin logging configuration
|
|
|
|
[loggers]
|
|
keys = root
|
|
|
|
[handlers]
|
|
keys = console
|
|
|
|
[formatters]
|
|
keys = generic
|
|
|
|
[logger_root]
|
|
level = INFO
|
|
handlers = console
|
|
|
|
[handler_console]
|
|
class = StreamHandler
|
|
args = (sys.stderr,)
|
|
level = NOTSET
|
|
formatter = generic
|
|
|
|
[formatter_generic]
|
|
format = %(asctime)s %(levelname)-5.5s [%(name)s][%(threadName)s] %(message)s
|
|
|
|
# End logging configuration
|