From: Vinay Sajip Date: Thu, 27 Oct 2011 16:50:55 +0000 (+0100) Subject: Added lost documentation cross-reference. X-Git-Tag: v3.3.0a1~993^2~31 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6187664fa777ba45c4674603bbd7e43eacacfe16;p=python Added lost documentation cross-reference. --- diff --git a/Doc/howto/logging-cookbook.rst b/Doc/howto/logging-cookbook.rst index 0bd7bb3479..7038ca479f 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 ` +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