Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
allendowney
GitHub Repository: allendowney/cpython
Path: blob/main/Lib/asyncio/log.py
12 views
1
"""Logging configuration."""
2
3
import logging
4
5
6
# Name the logger after the package.
7
logger = logging.getLogger(__package__)
8
9