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