]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
GH-65046: Fix docs about logging in `asyncio` (GH-97559)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Mon, 26 Sep 2022 22:45:58 +0000 (15:45 -0700)
committerPablo Galindo <pablogsal@gmail.com>
Sat, 22 Oct 2022 19:06:00 +0000 (20:06 +0100)
Explain that logging should not use network I/O.
(cherry picked from commit d68c37c0d08542a346a13b150a204208bb0408f5)

Co-authored-by: Kumar Aditya <59607654+kumaraditya303@users.noreply.github.com>
Doc/library/asyncio-dev.rst

index 921a394a59fec7ccd0af5cf94be41f60f1591106..14f2c3533c97129ea8df5671057dddc4930f794c 100644 (file)
@@ -149,8 +149,7 @@ adjusted::
 
 
 Network logging can block the event loop. It is recommended to use
-a separate thread for handling logs or use non-blocking IO. For example,
-see :ref:`blocking-handlers`.
+a separate thread for handling logs or use non-blocking IO.
 
 
 .. _asyncio-coroutine-not-scheduled: