2024-12-08 15:01:07 -08:00
|
|
|
"""Extension to the logging package to support different loggers."""
|
2015-05-08 14:20:43 -04:00
|
|
|
|
|
|
|
|
# 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.
|
2024-10-03 17:52:26 -07:00
|
|
|
from logging import Logger # noqa: F401
|
2015-05-08 14:20:43 -04:00
|
|
|
|
2024-12-08 15:01:07 -08:00
|
|
|
from buildscripts.resmokelib.logging import flush, loggers
|
2024-10-03 17:52:26 -07:00
|
|
|
|
2024-12-08 15:01:07 -08:00
|
|
|
__all__ = ["flush", "loggers"]
|