mirror of
https://github.com/AdaCore/cpython.git
synced 2026-02-12 12:57:15 -08:00
8 lines
124 B
Python
8 lines
124 B
Python
"""Logging configuration."""
|
|
|
|
import logging
|
|
|
|
|
|
# Name the logger after the package.
|
|
logger = logging.getLogger(__package__)
|