15 lines
405 B
Python
15 lines
405 B
Python
|
|
"""
|
||
|
|
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 config
|
||
|
|
from . import buildlogger
|
||
|
|
from . import flush
|
||
|
|
from . import loggers
|