diff options
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2010-12-19 13:41:26 +0000 |
---|---|---|
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2010-12-19 13:41:26 +0000 |
commit | 01094e1fe4893b0563f9b14537e487b6538233d6 (patch) | |
tree | d16bdc4068a1b0b8337d29b5556c40999cb16eb9 /Doc/library/logging.handlers.rst | |
parent | c63619bcf286128b6d870aadc1991b1e39ac7b01 (diff) | |
download | cpython-git-01094e1fe4893b0563f9b14537e487b6538233d6.tar.gz |
Logging documentation updates.
Diffstat (limited to 'Doc/library/logging.handlers.rst')
-rw-r--r-- | Doc/library/logging.handlers.rst | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/Doc/library/logging.handlers.rst b/Doc/library/logging.handlers.rst index a2e1be8441..810a473350 100644 --- a/Doc/library/logging.handlers.rst +++ b/Doc/library/logging.handlers.rst @@ -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 |