2018-03-27 14:30:46 -04:00
|
|
|
"""Extension to the logging package to support buildlogger."""
|
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.
|
|
|
|
|
from logging import Logger
|
|
|
|
|
|
2020-06-17 17:41:54 +03:00
|
|
|
from buildscripts.resmokelib.logging import buildlogger
|
|
|
|
|
from buildscripts.resmokelib.logging import flush
|
|
|
|
|
from buildscripts.resmokelib.logging import loggers
|