playing with logging

This commit is contained in:
2025-10-31 20:19:10 -04:00
parent e89fb9fae1
commit a7c0a58c9a
6 changed files with 80 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
"""Bar."""
import logging
logger = logging.getLogger(__name__)
def bar() -> None:
"""Bar."""
logger.debug(f"bar {__name__}")
logger.debug("bar")