1 """Logging configuration.""" 2 3 import logging 4 5 6 # Name the logger after the package. 7 logger = logging.getLogger(__package__) 8