summaryrefslogtreecommitdiffstats
path: root/Doc/howto/logging-cookbook.rst
diff options
context:
space:
mode:
authorVinay Sajip <vinay_sajip@yahoo.co.uk>2011-10-27 16:50:55 (GMT)
committerVinay Sajip <vinay_sajip@yahoo.co.uk>2011-10-27 16:50:55 (GMT)
commit6187664fa777ba45c4674603bbd7e43eacacfe16 (patch)
treee901ed75c38cea7015a5386594af317454d84a75 /Doc/howto/logging-cookbook.rst
parente119c403a12d2a04e894a7e61c8693084e2b21c8 (diff)
downloadcpython-6187664fa777ba45c4674603bbd7e43eacacfe16.zip
cpython-6187664fa777ba45c4674603bbd7e43eacacfe16.tar.gz
cpython-6187664fa777ba45c4674603bbd7e43eacacfe16.tar.bz2
Added lost documentation cross-reference.
Diffstat (limited to 'Doc/howto/logging-cookbook.rst')
-rw-r--r--Doc/howto/logging-cookbook.rst7
1 files changed, 4 insertions, 3 deletions
diff --git a/Doc/howto/logging-cookbook.rst b/Doc/howto/logging-cookbook.rst
index 0bd7bb3..7038ca4 100644
--- a/Doc/howto/logging-cookbook.rst
+++ b/Doc/howto/logging-cookbook.rst
@@ -674,9 +674,10 @@ need to log to a single file from multiple processes, one way of doing this is
to have all the processes log to a :class:`SocketHandler`, and have a separate
process which implements a socket server which reads from the socket and logs
to file. (If you prefer, you can dedicate one thread in one of the existing
-processes to perform this function.) The following section documents this
-approach in more detail and includes a working socket receiver which can be
-used as a starting point for you to adapt in your own applications.
+processes to perform this function.) :ref:`This section <network-logging>`
+documents this approach in more detail and includes a working socket receiver
+which can be used as a starting point for you to adapt in your own
+applications.
If you are using a recent version of Python which includes the
:mod:`multiprocessing` module, you could write your own handler which uses the