add a message if uvloop is found

This commit is contained in:
Alexander Bersenev
2019-08-30 16:05:08 +05:00
parent 1d826866d1
commit 50cd74051f

View File

@@ -1842,6 +1842,7 @@ def try_setup_uvloop():
try:
import uvloop
asyncio.set_event_loop_policy(uvloop.EventLoopPolicy())
print_err("Found uvloop, using it for optimal performance")
except ImportError:
pass