Staging
v0.5.1
Raw File
log.py
"""Logging configuration."""

import logging


# Name the logger after the package.
logger = logging.getLogger(__package__)
back to top