mongo/buildscripts/resmokelib/logging/__init__.py
katezdb 1dbfe1eb11 SERVER-96966 Remove undoDB integration as unused (#29368)
GitOrigin-RevId: 52080f36791ec1fd187515bf79793b800a98a7c2
2024-12-08 23:46:29 +00:00

10 lines
385 B
Python

"""Extension to the logging package to support different loggers."""
# Alias the built-in logging.Logger class for type checking arguments. Those interested in
# constructing a new Logger instance should use the loggers.new_logger() function instead.
from logging import Logger # noqa: F401
from buildscripts.resmokelib.logging import flush, loggers
__all__ = ["flush", "loggers"]