]> granicus.if.org Git - python/commitdiff
Logging documentation updates.
authorVinay Sajip <vinay_sajip@yahoo.co.uk>
Sun, 19 Dec 2010 13:41:26 +0000 (13:41 +0000)
committerVinay Sajip <vinay_sajip@yahoo.co.uk>
Sun, 19 Dec 2010 13:41:26 +0000 (13:41 +0000)
Doc/library/logging.config.rst
Doc/library/logging.handlers.rst
Doc/library/logging.rst

index 399d4dcc53ad6a7917085b6c38bd7553b77e4d09..3a05439226afb4003cad851177dcf58f25e19eaf 100644 (file)
@@ -8,6 +8,16 @@
 .. moduleauthor:: Vinay Sajip <vinay_sajip@red-dove.com>
 .. sectionauthor:: Vinay Sajip <vinay_sajip@red-dove.com>
 
+.. sidebar:: Important
+
+   This page contains only reference information. For tutorials,
+   please see
+
+   * :ref:`Basic Tutorial <logging-basic-tutorial>`
+   * :ref:`Advanced Tutorial <logging-advanced-tutorial>`
+   * :ref:`Logging Cookbook <logging-cookbook>`
+
+This section describes the API for configuring the logging module.
 
 .. _logging-config-api:
 
index a2e1be8441747cba7f6b7d650d005a6afe98f86d..810a473350a742943c4f1d84cc11a240d36bc18a 100644 (file)
@@ -8,10 +8,22 @@
 .. moduleauthor:: Vinay Sajip <vinay_sajip@red-dove.com>
 .. sectionauthor:: Vinay Sajip <vinay_sajip@red-dove.com>
 
-The following useful handlers are provided in the package.
+.. sidebar:: Important
+
+   This page contains only reference information. For tutorials,
+   please see
+
+   * :ref:`Basic Tutorial <logging-basic-tutorial>`
+   * :ref:`Advanced Tutorial <logging-advanced-tutorial>`
+   * :ref:`Logging Cookbook <logging-cookbook>`
 
 .. currentmodule:: logging
 
+The following useful handlers are provided in the package. Note that three of
+the handlers (:class:`StreamHandler`, :class:`FileHandler` and
+:class:`NullHandler`) are actually defined in the :mod:`logging` module itself,
+but have been documented here along with the other handlers.
+
 .. _stream-handler:
 
 StreamHandler
index 4eb39d47f1260a87269b0bc8b66999204b6472ff..e02556b8d6716750ef61ffbb78db144876825e77 100644 (file)
 
 .. sidebar:: Important
 
-   The tutorials have been moved to the HOWTO section:
+   This page contains the API reference information. For tutorial
+   information and discussion of more advanced topics, see
 
    * :ref:`Basic Tutorial <logging-basic-tutorial>`
    * :ref:`Advanced Tutorial <logging-advanced-tutorial>`
    * :ref:`Logging Cookbook <logging-cookbook>`
 
 
-
 This module defines functions and classes which implement a flexible event
 logging system for applications and libraries.
 
@@ -31,8 +31,7 @@ modules.
 
 The module provides a lot of functionality and flexibility.  If you are
 unfamiliar with logging, the best way to get to grips with it is to see the
-tutorials (see the links on the right). This page contains the API reference
-information.
+tutorials (see the links on the right).
 
 The basic classes defined by the module, together with their functions, are
 listed below.