diff options
| author | Casey Duncan <casey.duncan@gmail.com> | 2010-12-27 09:28:50 -0700 |
|---|---|---|
| committer | Casey Duncan <casey.duncan@gmail.com> | 2010-12-27 09:28:50 -0700 |
| commit | 6f7b6c0221f8c120a22b630eea26905744d2b6b4 (patch) | |
| tree | 6c8e1ae3affba81ec0c26eb183c4f424b577a1d5 /docs/tutorials/wiki/src/basiclayout/development.ini | |
| parent | 6d0ff23fc3094f3f40d93d020bbc80ecdfceb825 (diff) | |
| parent | e8db031e8cd22affb65254539ae210f64d37f36e (diff) | |
| download | pyramid-6f7b6c0221f8c120a22b630eea26905744d2b6b4.tar.gz pyramid-6f7b6c0221f8c120a22b630eea26905744d2b6b4.tar.bz2 pyramid-6f7b6c0221f8c120a22b630eea26905744d2b6b4.zip | |
Merge https://github.com/Pylons/pyramid
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 |
