Files
dotfiles/python/testing/logging/bar.py
2025-10-31 22:37:54 -04:00

12 lines
161 B
Python

"""Bar."""
import logging
logger = logging.getLogger(__name__)
def bar() -> None:
"""Bar."""
logger.debug(f"bar {__name__}")
logger.debug("bar")