summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAndrew Svetlov <andrew.svetlov@gmail.com>2018-09-30 05:28:40 (GMT)
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2018-09-30 05:28:40 (GMT)
commitd5bd036138881bb90a803397d992870a46fbdc2d (patch)
tree5375a0724482a249efa43a963d55ddf9ba9ec709 /Misc
parentdf8101517aa1c917fdf8aeb466e480c26d4e878c (diff)
downloadcpython-d5bd036138881bb90a803397d992870a46fbdc2d.zip
cpython-d5bd036138881bb90a803397d992870a46fbdc2d.tar.gz
cpython-d5bd036138881bb90a803397d992870a46fbdc2d.tar.bz2
bpo-34849: Don't log wating for selector.select in asyncio loop iteration (GH-9641)
The waiting is pretty normal for any asyncio program, logging its time just adds a noise to logs without any useful information provided. https://bugs.python.org/issue34849
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2018-09-30-08-08-14.bpo-34849.NXK9Ff.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2018-09-30-08-08-14.bpo-34849.NXK9Ff.rst b/Misc/NEWS.d/next/Library/2018-09-30-08-08-14.bpo-34849.NXK9Ff.rst
new file mode 100644
index 0000000..6f5321c
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2018-09-30-08-08-14.bpo-34849.NXK9Ff.rst
@@ -0,0 +1,3 @@
+Don't log wating for ``selector.select`` in asyncio loop iteration. The
+waiting is pretty normal for any asyncio program, logging its time just adds
+a noise to logs without any useful information provided.