diff options
| author | Patricio Paez <pp@pp.com.mx> | 2012-11-19 22:35:36 -0600 |
|---|---|---|
| committer | Patricio Paez <pp@pp.com.mx> | 2012-11-19 22:42:39 -0600 |
| commit | 6234f4a25a59658ccc66fe3d2b1c248ba96f5344 (patch) | |
| tree | 55e28cf81ba3d04ffa95104cbdfac5bad6bfd545 /docs/tutorials/wiki/src/views/development.ini | |
| parent | c344e532e27ce078643ec3246002d2703ef85416 (diff) | |
| download | pyramid-6234f4a25a59658ccc66fe3d2b1c248ba96f5344.tar.gz pyramid-6234f4a25a59658ccc66fe3d2b1c248ba96f5344.tar.bz2 pyramid-6234f4a25a59658ccc66fe3d2b1c248ba96f5344.zip | |
Sync some ZODB wiki tutorial files with the scaffold
- Files that are not referred to in a literalinclude
in the tutorial docs
- setup.py and development.ini appear in a literalinclude
but no lines are emphasized and there is no impact.
Diffstat (limited to 'docs/tutorials/wiki/src/views/development.ini')
| -rw-r--r-- | docs/tutorials/wiki/src/views/development.ini | 28 |
1 files changed, 25 insertions, 3 deletions
diff --git a/docs/tutorials/wiki/src/views/development.ini b/docs/tutorials/wiki/src/views/development.ini index f637ebaa6..c504ec82f 100644 --- a/docs/tutorials/wiki/src/views/development.ini +++ b/docs/tutorials/wiki/src/views/development.ini @@ -1,5 +1,11 @@ +### +# app configuration +# http://docs.pylonsproject.org/projects/pyramid/en/latest/narr/environment.html +### + [app:main] use = egg:tutorial + pyramid.reload_templates = true pyramid.debug_authorization = false pyramid.debug_notfound = false @@ -13,15 +19,26 @@ pyramid.includes = tm.attempts = 3 zodbconn.uri = file://%(here)s/Data.fs?connection_cache_size=20000 +# By default, the toolbar only appears for clients from IP addresses +# '127.0.0.1' and '::1'. +# debugtoolbar.hosts = 127.0.0.1 ::1 + +### +# wsgi server configuration +### + [server:main] use = egg:waitress#main host = 0.0.0.0 port = 6543 -# Begin logging configuration +### +# logging configuration +# http://docs.pylonsproject.org/projects/pyramid/en/latest/narr/logging.html +### [loggers] -keys = root +keys = root, tutorial [handlers] keys = console @@ -33,6 +50,11 @@ keys = generic level = INFO handlers = console +[logger_tutorial] +level = DEBUG +handlers = +qualname = tutorial + [handler_console] class = StreamHandler args = (sys.stderr,) @@ -40,6 +62,6 @@ level = NOTSET formatter = generic [formatter_generic] -format = %(asctime)s %(levelname)-5.5s [%(name)s] %(message)s +format = %(asctime)s %(levelname)-5.5s [%(name)s][%(threadName)s] %(message)s # End logging configuration |
