diff options
author | Guido van Rossum <guido@dropbox.com> | 2013-10-17 13:40:50 -0700 |
---|---|---|
committer | Guido van Rossum <guido@dropbox.com> | 2013-10-17 13:40:50 -0700 |
commit | 27b7c7ebf1039e96cac41b6330cf16b5632d9e49 (patch) | |
tree | 814505b0f9d02a5cabdec733dcde70250b04ee28 /Lib/asyncio/log.py | |
parent | 5b37f97ea5ac9f6b33b0e0269c69539cbb478142 (diff) | |
download | cpython-git-27b7c7ebf1039e96cac41b6330cf16b5632d9e49.tar.gz |
Initial checkin of asyncio package (== Tulip, == PEP 3156).
Diffstat (limited to 'Lib/asyncio/log.py')
-rw-r--r-- | Lib/asyncio/log.py | 6 |
1 files changed, 6 insertions, 0 deletions
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") |