summaryrefslogtreecommitdiff
path: root/docs/quick_tutorial/views/development.ini
diff options
context:
space:
mode:
authorTres Seaver <tseaver@palladion.com>2014-03-13 18:17:43 -0400
committerTres Seaver <tseaver@palladion.com>2014-03-13 18:17:43 -0400
commitba85e591d563ed654f492f7cab5ca492a32a86d7 (patch)
treef289cc68fafa63a24c157f73c02dd894c349779d /docs/quick_tutorial/views/development.ini
parentca3dcdc7f4c0d4a1a836a5d16f191aad4ee460cf (diff)
downloadpyramid-ba85e591d563ed654f492f7cab5ca492a32a86d7.tar.gz
pyramid-ba85e591d563ed654f492f7cab5ca492a32a86d7.tar.bz2
pyramid-ba85e591d563ed654f492f7cab5ca492a32a86d7.zip
Strip redundant logging config from tutorial INI files.
Leave it for the 'logging' and 'scaffolds' sections, where it is germane.
Diffstat (limited to 'docs/quick_tutorial/views/development.ini')
-rw-r--r--docs/quick_tutorial/views/development.ini31
1 files changed, 0 insertions, 31 deletions
diff --git a/docs/quick_tutorial/views/development.ini b/docs/quick_tutorial/views/development.ini
index 470d92c57..52b2a3a41 100644
--- a/docs/quick_tutorial/views/development.ini
+++ b/docs/quick_tutorial/views/development.ini
@@ -7,34 +7,3 @@ pyramid.includes =
use = egg:pyramid#wsgiref
host = 0.0.0.0
port = 6543
-
-# Begin logging configuration
-
-[loggers]
-keys = root, tutorial
-
-[logger_tutorial]
-level = DEBUG
-handlers =
-qualname = tutorial
-
-[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