You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
883 B
38 lines
883 B
from __future__ import absolute_import
|
|
|
|
import warnings
|
|
import logging
|
|
|
|
|
|
LEVEL_OVERRIDES = {
|
|
'requests': logging.WARNING,
|
|
}
|
|
|
|
LOG_FORMAT = '[%(levelname)s] %(asctime)s - %(name)s:%(lineno)d - %(message)s'
|
|
|
|
|
|
def setup_logging(**kwargs):
|
|
kwargs.setdefault('format', LOG_FORMAT)
|
|
|
|
# Setup warnings module correctly
|
|
warnings.simplefilter('always', DeprecationWarning)
|
|
logging.captureWarnings(True)
|
|
|
|
# Pass through our basic configuration
|
|
logging.basicConfig(**kwargs)
|
|
|
|
# Override some noisy loggers
|
|
for logger, level in LEVEL_OVERRIDES.items():
|
|
logging.getLogger(logger).setLevel(level)
|
|
|
|
|
|
class LoggingClass(object):
|
|
__slots__ = ['_log']
|
|
|
|
@property
|
|
def log(self):
|
|
try:
|
|
return self._log
|
|
except AttributeError:
|
|
self._log = logging.getLogger(self.__class__.__name__)
|
|
return self._log
|
|
|