Rename the logger to plain "logger".

This commit is contained in:
Guido van Rossum 2013-10-17 15:39:45 -07:00
parent b795aa8547
commit fc29e0f37e
15 changed files with 61 additions and 60 deletions

View file

@ -3,4 +3,5 @@
import logging
asyncio_log = logging.getLogger("asyncio")
# Name the logger after the package.
logger = logging.getLogger(__package__)