Files
mongo/buildscripts/resmokelib/logging/__init__.py
Juan Gu 855dfadef0 SERVER-94077 Use isort in Ruff configs (#27865)
GitOrigin-RevId: e793d662774ccd3ab6c3f356c2287cf1f7ff9805
2024-10-10 19:33:49 +00:00

10 lines
407 B
Python

"""Extension to the logging package to support buildlogger."""
# 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 buildlogger, flush, loggers
__all__ = ["buildlogger", "flush", "loggers"]