From e6fda8575e7c543e7598225fd569b61c1e3c79ed Mon Sep 17 00:00:00 2001 From: Vinay Sajip Date: Thu, 27 Oct 2011 17:51:13 +0100 Subject: [PATCH] Added lost documentation cross-reference. --- Doc/howto/logging-cookbook.rst | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Doc/howto/logging-cookbook.rst b/Doc/howto/logging-cookbook.rst index b1f5c7cf4a..45bb5006e5 100644 --- a/Doc/howto/logging-cookbook.rst +++ b/Doc/howto/logging-cookbook.rst @@ -610,9 +610,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 -- 2.50.1