diff options
author | Victor Stinner <vstinner@redhat.com> | 2019-01-15 10:48:00 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-15 10:48:00 (GMT) |
commit | b1e45739d832e1e402a563c6727defda92e193b7 (patch) | |
tree | ae3340682e19f2a113d607dc2d2d81379edf0841 /Misc | |
parent | 06f8b57212b2e2cd2e63af36cecdfa3075b324a2 (diff) | |
download | cpython-b1e45739d832e1e402a563c6727defda92e193b7.zip cpython-b1e45739d832e1e402a563c6727defda92e193b7.tar.gz cpython-b1e45739d832e1e402a563c6727defda92e193b7.tar.bz2 |
bpo-34323: Enhance IocpProactor.close() log (GH-11555)
IocpProactor.close() now uses time to decide when to log: wait 1
second before the first log, then log every second. Log also the
number of seconds since close() was called.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2019-01-14-17-34-36.bpo-34323.CRErrt.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-01-14-17-34-36.bpo-34323.CRErrt.rst b/Misc/NEWS.d/next/Library/2019-01-14-17-34-36.bpo-34323.CRErrt.rst new file mode 100644 index 0000000..5926924 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2019-01-14-17-34-36.bpo-34323.CRErrt.rst @@ -0,0 +1,3 @@ +:mod:`asyncio`: Enhance ``IocpProactor.close()`` log: wait 1 second before +the first log, then log every second. Log also the number of seconds since +``close()`` was called. |