diff options
| -rw-r--r-- | docs/narr/logging.rst | 1 | ||||
| -rw-r--r-- | docs/narr/project.rst | 6 |
2 files changed, 3 insertions, 4 deletions
diff --git a/docs/narr/logging.rst b/docs/narr/logging.rst index 7b60beda9..c8b3c0041 100644 --- a/docs/narr/logging.rst +++ b/docs/narr/logging.rst @@ -32,6 +32,7 @@ you to send messages to :mod:`Python standard library logging package :term:`PasteDeploy` ``development.ini`` and ``production.ini`` files created when you use our cookiecutter include a basic configuration for the Python :mod:`logging` package. +These ini file sections are passed to the `logging module's config file configuration engine <https://docs.python.org/2/howto/logging.html#configuring-logging>`_. PasteDeploy ``.ini`` files use the Python standard library :mod:`ConfigParser format <ConfigParser>`. This is the same format used as the Python diff --git a/docs/narr/project.rst b/docs/narr/project.rst index 3522ea964..d84b740e3 100644 --- a/docs/narr/project.rst +++ b/docs/narr/project.rst @@ -658,10 +658,8 @@ only (``127.0.0.1``). .. _myproject_ini_logging: The sections after ``# logging configuration`` represent Python's standard -library :mod:`logging` module configuration for your application. These -sections are passed to the `logging module's config file configuration engine -<https://docs.python.org/2/howto/logging.html#configuring-logging>`_ when the -``pserve`` or ``pshell`` commands are executed. The default configuration +library :mod:`logging` module configuration for your application. +The default configuration sends application logging output to the standard error output of your terminal. For more information about logging configuration, see :ref:`logging_chapter`. |
