mirror of https://github.com/python/cpython
GH-65046: Fix docs about logging in `asyncio` (#97559)
Explain that logging should not use network I/O.
This commit is contained in:
parent
d79dd929ac
commit
d68c37c0d0
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue