blob: 23a7074afb0a53aa114341bdbf060ea68f543603 [file] [log] [blame]
Guido van Rossum27b7c7e2013-10-17 13:40:50 -07001"""Logging configuration."""
2
3import logging
4
5
Guido van Rossumfc29e0f2013-10-17 15:39:45 -07006# Name the logger after the package.
7logger = logging.getLogger(__package__)