diff options
| author | Chris McDonough <chrism@plope.com> | 2011-08-13 01:00:39 -0400 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2011-08-13 01:00:39 -0400 |
| commit | 391402e63c1257ede0069f220ed5a1cca1b94a9b (patch) | |
| tree | 014d867eff43e5f18b1723ce7d846c87c1c2e202 /docs/narr/project.rst | |
| parent | dd25a5afd44d3fdc89782d232dfe818245e496cd (diff) | |
| download | pyramid-391402e63c1257ede0069f220ed5a1cca1b94a9b.tar.gz pyramid-391402e63c1257ede0069f220ed5a1cca1b94a9b.tar.bz2 pyramid-391402e63c1257ede0069f220ed5a1cca1b94a9b.zip | |
- Projects created via a scaffold no longer depend on the ``WebError``
package at all; configuration in the ``production.ini`` file which used to
require its ``error_catcher`` middleware has been removed. Configuring
error catching / email sending is now the domain of the ``pyramid_exclog``
package (see https://docs.pylonsproject.org/projects/pyramid_exclog/dev/).
Diffstat (limited to 'docs/narr/project.rst')
| -rw-r--r-- | docs/narr/project.rst | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/docs/narr/project.rst b/docs/narr/project.rst index e59d04ee1..aed93f9c5 100644 --- a/docs/narr/project.rst +++ b/docs/narr/project.rst @@ -588,13 +588,11 @@ implementations. The ``production.ini`` file is a :term:`PasteDeploy` configuration file with a purpose much like that of ``development.ini``. However, it disables the -debug toolbar, replacing it with a logger which outputs exception messages to -``stderr`` by default. It also turns off template development options such -that templates are not automatically reloaded when changed, and turns off all -debugging options. It allows you to configure a ``weberror#error_catcher`` -section that will cause exceptions to be sent to an email address when they -are uncaught. You can use this file instead of ``development.ini`` when you -put your application into production. +debug toolbar, and filters all log messages except those above the WARN +level. It also turns off template development options such that templates +are not automatically reloaded when changed, and turns off all debugging +options. This file is appropriate to use instead of ``development.ini`` when +you put your application into production. .. index:: single: MANIFEST.in |
