From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Mon, 26 Sep 2022 22:37:38 +0000 (-0700) Subject: GH-65046: Fix docs about logging in `asyncio` (GH-97559) X-Git-Tag: v3.10.8~104 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=72a78152f3f51716e7eae5a345007c16efb17ee2;p=thirdparty%2FPython%2Fcpython.git GH-65046: Fix docs about logging in `asyncio` (GH-97559) 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> --- diff --git a/Doc/library/asyncio-dev.rst b/Doc/library/asyncio-dev.rst index 02a00033152a..aed312bfec06 100644 --- a/Doc/library/asyncio-dev.rst +++ b/Doc/library/asyncio-dev.rst @@ -148,6 +148,10 @@ adjusted:: logging.getLogger("asyncio").setLevel(logging.WARNING) +Network logging can block the event loop. It is recommended to use +a separate thread for handling logs or use non-blocking IO. + + .. _asyncio-coroutine-not-scheduled: Detect never-awaited coroutines