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,18 @@
"""foo"""
import logging
from python.testing.logging.bar import bar
from python.testing.logging.configure_logger import configure_logger
logger = logging.getLogger(__name__)
def foo() -> None:
"""Foo."""
configure_logger("DEBUG", "FOO")
logger.debug(f"foo {__name__}")
logger.debug("foo")
bar()