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