summaryrefslogtreecommitdiff
path: root/docs/quick_tour/logging/development.ini
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2016-12-25 03:07:50 -0800
committerSteve Piercy <web@stevepiercy.com>2016-12-25 03:07:50 -0800
commitc87565c5ff1a3422e651f369fe4b2f848a9010ed (patch)
tree9410b245f2abea9f9aec8cc0cc8186dddccbd61a /docs/quick_tour/logging/development.ini
parent9483444d55f4dd9be8adc8c386b4af0d8af032a3 (diff)
downloadpyramid-c87565c5ff1a3422e651f369fe4b2f848a9010ed.tar.gz
pyramid-c87565c5ff1a3422e651f369fe4b2f848a9010ed.tar.bz2
pyramid-c87565c5ff1a3422e651f369fe4b2f848a9010ed.zip
quick_tour - "Logging" updates for cookiecutter
- fix line numbering - add new src files that were never included
Diffstat (limited to 'docs/quick_tour/logging/development.ini')
-rw-r--r--docs/quick_tour/logging/development.ini59
1 files changed, 59 insertions, 0 deletions
diff --git a/docs/quick_tour/logging/development.ini b/docs/quick_tour/logging/development.ini
new file mode 100644
index 000000000..1f19e373d
--- /dev/null
+++ b/docs/quick_tour/logging/development.ini
@@ -0,0 +1,59 @@
+###
+# app configuration
+# http://docs.pylonsproject.org/projects/pyramid/en/latest/narr/environment.html
+###
+
+[app:main]
+use = egg:hello_world
+
+pyramid.reload_templates = true
+pyramid.debug_authorization = false
+pyramid.debug_notfound = false
+pyramid.debug_routematch = false
+pyramid.default_locale_name = en
+pyramid.includes =
+ pyramid_debugtoolbar
+
+# 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
+listen = 127.0.0.1:6543 [::1]:6543
+
+###
+# logging configuration
+# http://docs.pylonsproject.org/projects/pyramid/en/latest/narr/logging.html
+###
+
+[loggers]
+keys = root, hello_world
+
+[handlers]
+keys = console
+
+[formatters]
+keys = generic
+
+[logger_root]
+level = INFO
+handlers = console
+
+[logger_hello_world]
+level = DEBUG
+handlers =
+qualname = hello_world
+
+[handler_console]
+class = StreamHandler
+args = (sys.stderr,)
+level = NOTSET
+formatter = generic
+
+[formatter_generic]
+format = %(asctime)s %(levelname)-5.5s [%(name)s:%(lineno)s][%(threadName)s] %(message)s