Files
mongo/buildscripts/resmokelib/logging/__init__.py
2019-04-08 14:08:49 -04:00

10 lines
342 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
from . import buildlogger
from . import flush
from . import loggers