diff options
| author | Chris McDonough <chrism@plope.com> | 2010-12-22 22:34:20 -0500 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2010-12-22 22:34:20 -0500 |
| commit | 2a5ae0346df95e5b4f9a7d8531574dce70abe31f (patch) | |
| tree | 7b03626c0bb639e3432f9e5245b61327cbefc775 /docs/tutorials/wiki/src/basiclayout/development.ini | |
| parent | 319793d9b3d127ba2a9245713ef4f01b32918e95 (diff) | |
| download | pyramid-2a5ae0346df95e5b4f9a7d8531574dce70abe31f.tar.gz pyramid-2a5ae0346df95e5b4f9a7d8531574dce70abe31f.tar.bz2 pyramid-2a5ae0346df95e5b4f9a7d8531574dce70abe31f.zip | |
- The ``pyramid_zodb`` Paster template no longer employs ZCML. Instead, it
is based on scanning.
- Changed the "ZODB + Traversal Wiki Tutorial" based on changes to
``pyramid_zodb`` Paster template.
Diffstat (limited to 'docs/tutorials/wiki/src/basiclayout/development.ini')
| -rw-r--r-- | docs/tutorials/wiki/src/basiclayout/development.ini | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/docs/tutorials/wiki/src/basiclayout/development.ini b/docs/tutorials/wiki/src/basiclayout/development.ini index fdae922e9..6f4c33d93 100644 --- a/docs/tutorials/wiki/src/basiclayout/development.ini +++ b/docs/tutorials/wiki/src/basiclayout/development.ini @@ -4,10 +4,13 @@ reload_templates = true debug_authorization = false debug_notfound = false debug_routematch = false +debug_templates = true +default_locale_name = en zodb_uri = file://%(here)s/Data.fs?connection_cache_size=20000 [pipeline:main] pipeline = + egg:WebError#evalerror egg:repoze.zodbconn#closer egg:repoze.tm#tm tutorial @@ -16,3 +19,29 @@ pipeline = 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 |
