Permalink
Cannot retrieve contributors at this time
Fetching contributors…
| [app:main] | |
| use = egg:asjp | |
| pyramid.reload_templates = true | |
| pyramid.debug_authorization = false | |
| pyramid.debug_notfound = true | |
| pyramid.debug_routematch = false | |
| pyramid.default_locale_name = en | |
| pyramid.includes = | |
| pyramid_tm | |
| sqlalchemy.url = sqlite:///%(here)s/asjp.sqlite | |
| ### | |
| # wsgi server configuration | |
| ### | |
| [server:main] | |
| use = egg:waitress#main | |
| host = 127.0.0.1 | |
| port = 6543 | |
| ### | |
| # logging configuration | |
| # http://docs.pylonsproject.org/projects/pyramid/en/latest/narr/logging.html | |
| ### | |
| [loggers] | |
| keys = root, asjp, sqlalchemy | |
| [handlers] | |
| keys = console | |
| [formatters] | |
| keys = generic | |
| [logger_root] | |
| level = INFO | |
| handlers = console | |
| [logger_asjp] | |
| level = DEBUG | |
| handlers = | |
| qualname = asjp | |
| [logger_sqlalchemy] | |
| level = WARN | |
| handlers = | |
| qualname = sqlalchemy.engine | |
| # "level = INFO" logs SQL queries. | |
| # "level = DEBUG" logs SQL queries and results. | |
| # "level = WARN" logs neither. (Recommended for production systems.) | |
| [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 |