mirror of https://github.com/python/cpython
gh-65046: Link to logging cookbook from asyncio docs (#98207)
This commit is contained in:
parent
3b33c2010a
commit
c39a0c3354
|
@ -332,6 +332,8 @@ configuration::
|
|||
print('complete')
|
||||
|
||||
|
||||
.. _blocking-handlers:
|
||||
|
||||
Dealing with handlers that block
|
||||
--------------------------------
|
||||
|
||||
|
|
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue