We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 427fb79 commit e0e20f1Copy full SHA for e0e20f1
2 files changed
src/log.py
@@ -65,7 +65,7 @@ def resolve_log_level() -> int:
65
66
def get_logger(name: str) -> logging.Logger:
67
"""Create a common logger for all modules in this package."""
68
- # FIXME: Remove the need for this function.
+ # The need for this function should be removed in the future.
69
#
70
# Normally this is derived from the package name (__name__).
71
tests/unit/test_log.py
@@ -13,6 +13,7 @@
13
14
@pytest.fixture(autouse=True)
15
def clear_logging_cache():
16
+ """Clear logging cache"""
17
setup_logging.cache_clear()
18
19
0 commit comments