summaryrefslogtreecommitdiff
path: root/buildscripts/resmokelib/logging/__init__.py
blob: 816a62004d8cc1c8c481be1a58f7bd4a4b1a0690 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
"""
Extension to the logging package to support buildlogger.
"""

from __future__ import absolute_import

# 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