diff options
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2010-12-26 21:22:33 (GMT) |
---|---|---|
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2010-12-26 21:22:33 (GMT) |
commit | 7d10129369d55821e51d28d4efebaee3ac79a85b (patch) | |
tree | 7408272bbf5f709d8a87287a3ea3a1ed0c5ea02c /Doc/howto/logging.rst | |
parent | b4ca59b783d6d2047c34eb242d97272d81b94688 (diff) | |
download | cpython-7d10129369d55821e51d28d4efebaee3ac79a85b.zip cpython-7d10129369d55821e51d28d4efebaee3ac79a85b.tar.gz cpython-7d10129369d55821e51d28d4efebaee3ac79a85b.tar.bz2 |
Added logging documentation cross-references.
Diffstat (limited to 'Doc/howto/logging.rst')
-rw-r--r-- | Doc/howto/logging.rst | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Doc/howto/logging.rst b/Doc/howto/logging.rst index a94915d..21b5cbc 100644 --- a/Doc/howto/logging.rst +++ b/Doc/howto/logging.rst @@ -1015,3 +1015,16 @@ Also note that the core logging module only includes the basic handlers. If you don't import :mod:`logging.handlers` and :mod:`logging.config`, they won't take up any memory. +.. seealso:: + + Module :mod:`logging` + API reference for the logging module. + + Module :mod:`logging.config` + Configuration API for the logging module. + + Module :mod:`logging.handlers` + Useful handlers included with the logging module. + + :ref:`A logging cookbook <logging-cookbook>` + |