diff options
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2022-06-01 07:29:13 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-01 07:29:13 (GMT) |
commit | 132e563703ed634312e54c04a9b1636f8b0e2923 (patch) | |
tree | 37c25b021f49ed97b0525ce2678a557a99f330e7 /Doc/howto/logging.rst | |
parent | 5247389369ac3da35c44f7c0d8f4facc0300883a (diff) | |
download | cpython-132e563703ed634312e54c04a9b1636f8b0e2923.zip cpython-132e563703ed634312e54c04a9b1636f8b0e2923.tar.gz cpython-132e563703ed634312e54c04a9b1636f8b0e2923.tar.bz2 |
[doc] Improve discoverability of links between logging documents. (GH-93405)
Diffstat (limited to 'Doc/howto/logging.rst')
-rw-r--r-- | Doc/howto/logging.rst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Doc/howto/logging.rst b/Doc/howto/logging.rst index cc4e278..f024430 100644 --- a/Doc/howto/logging.rst +++ b/Doc/howto/logging.rst @@ -8,6 +8,9 @@ Logging HOWTO .. currentmodule:: logging +This page contains tutorial information. For links to reference information and a +logging cookbook, please see :ref:`tutorial-ref-links`. + Basic Logging Tutorial ---------------------- @@ -1109,6 +1112,11 @@ 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. +.. _tutorial-ref-links: + +Other resources +--------------- + .. seealso:: Module :mod:`logging` |