From 27b7c7ebf1039e96cac41b6330cf16b5632d9e49 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Thu, 17 Oct 2013 13:40:50 -0700 Subject: Initial checkin of asyncio package (== Tulip, == PEP 3156). --- Lib/asyncio/log.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 Lib/asyncio/log.py (limited to 'Lib/asyncio/log.py') diff --git a/Lib/asyncio/log.py b/Lib/asyncio/log.py new file mode 100644 index 0000000000..54dc784e5c --- /dev/null +++ b/Lib/asyncio/log.py @@ -0,0 +1,6 @@ +"""Logging configuration.""" + +import logging + + +asyncio_log = logging.getLogger("asyncio") -- cgit v1.2.1