gh-65046: Link to logging cookbook from asyncio docs (#98207)

This commit is contained in:
Shantanu 2022-10-11 21:42:57 -07:00 committed by GitHub
parent 3b33c2010a
commit c39a0c3354
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View file

@ -332,6 +332,8 @@ configuration::
print('complete')
.. _blocking-handlers:
Dealing with handlers that block
--------------------------------

View file

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