2011-11-15 13:39:31 -06:00
|
|
|
# Authors: John Dennis <jdennis@redhat.com>
|
|
|
|
#
|
|
|
|
# Copyright (C) 2011 Red Hat
|
|
|
|
# see file 'COPYING' for use and warranty information
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2016-09-14 08:45:50 -05:00
|
|
|
import logging
|
|
|
|
import os
|
|
|
|
import re
|
|
|
|
import time
|
|
|
|
|
2011-11-15 13:39:31 -06:00
|
|
|
# Module exports
|
2019-04-12 12:48:14 -05:00
|
|
|
__all__ = ['standard_logging_setup',
|
2016-09-14 15:13:34 -05:00
|
|
|
'ISO8601_UTC_DATETIME_FMT',
|
2011-11-15 13:39:31 -06:00
|
|
|
'LOGGING_FORMAT_STDERR', 'LOGGING_FORMAT_STDOUT', 'LOGGING_FORMAT_FILE']
|
|
|
|
|
|
|
|
# Format string for time.strftime() to produce a ISO 8601 date time
|
|
|
|
# formatted string in the UTC time zone.
|
|
|
|
ISO8601_UTC_DATETIME_FMT = '%Y-%m-%dT%H:%M:%SZ'
|
|
|
|
|
|
|
|
# Logging format string for use with logging stderr handlers
|
|
|
|
LOGGING_FORMAT_STDERR = 'ipa: %(levelname)s: %(message)s'
|
|
|
|
|
|
|
|
# Logging format string for use with logging stdout handlers
|
|
|
|
LOGGING_FORMAT_STDOUT = '[%(asctime)s %(name)s] <%(levelname)s>: %(message)s'
|
|
|
|
|
|
|
|
# Logging format string for use with logging file handlers
|
|
|
|
LOGGING_FORMAT_FILE = '\t'.join([
|
|
|
|
'%(asctime)s',
|
|
|
|
'%(process)d',
|
|
|
|
'%(threadName)s',
|
|
|
|
'%(name)s',
|
|
|
|
'%(levelname)s',
|
|
|
|
'%(message)s',
|
|
|
|
])
|
|
|
|
|
|
|
|
# Used by standard_logging_setup() for console message
|
|
|
|
LOGGING_FORMAT_STANDARD_CONSOLE = '%(name)-12s: %(levelname)-8s %(message)s'
|
|
|
|
|
|
|
|
# Used by standard_logging_setup() for file message
|
|
|
|
LOGGING_FORMAT_STANDARD_FILE = '%(asctime)s %(levelname)s %(message)s'
|
|
|
|
|
2016-09-14 08:45:50 -05:00
|
|
|
|
2018-09-26 04:59:50 -05:00
|
|
|
class Filter:
|
2016-09-14 08:45:50 -05:00
|
|
|
def __init__(self, regexp, level):
|
|
|
|
self.regexp = re.compile(regexp)
|
|
|
|
self.level = level
|
|
|
|
|
|
|
|
def filter(self, record):
|
|
|
|
return (not self.regexp.match(record.name) or
|
|
|
|
record.levelno >= self.level)
|
|
|
|
|
|
|
|
|
|
|
|
class Formatter(logging.Formatter):
|
|
|
|
def __init__(
|
|
|
|
self, fmt=LOGGING_FORMAT_STDOUT, datefmt=ISO8601_UTC_DATETIME_FMT):
|
|
|
|
super(Formatter, self).__init__(fmt, datefmt)
|
|
|
|
self.converter = time.gmtime
|
|
|
|
|
2011-11-15 13:39:31 -06:00
|
|
|
|
2012-06-08 08:36:38 -05:00
|
|
|
def standard_logging_setup(filename=None, verbose=False, debug=False,
|
2016-11-08 01:28:28 -06:00
|
|
|
filemode='w', console_format=None):
|
|
|
|
if console_format is None:
|
|
|
|
console_format = LOGGING_FORMAT_STANDARD_CONSOLE
|
|
|
|
|
2017-05-24 09:35:07 -05:00
|
|
|
root_logger = logging.getLogger()
|
2016-09-14 08:45:50 -05:00
|
|
|
root_logger.setLevel(logging.DEBUG)
|
2011-11-15 13:39:31 -06:00
|
|
|
|
|
|
|
# File output is always logged at debug level
|
|
|
|
if filename is not None:
|
2016-09-14 08:45:50 -05:00
|
|
|
umask = os.umask(0o177)
|
|
|
|
try:
|
|
|
|
file_handler = logging.FileHandler(filename, mode=filemode)
|
|
|
|
finally:
|
|
|
|
os.umask(umask)
|
|
|
|
file_handler.setLevel(logging.DEBUG)
|
|
|
|
file_handler.setFormatter(Formatter(LOGGING_FORMAT_STANDARD_FILE))
|
|
|
|
root_logger.addHandler(file_handler)
|
|
|
|
|
|
|
|
level = logging.ERROR
|
2011-11-15 13:39:31 -06:00
|
|
|
if verbose:
|
2016-09-14 08:45:50 -05:00
|
|
|
level = logging.INFO
|
2011-11-15 13:39:31 -06:00
|
|
|
if debug:
|
2016-09-14 08:45:50 -05:00
|
|
|
level = logging.DEBUG
|
2011-11-15 13:39:31 -06:00
|
|
|
|
2016-09-14 08:45:50 -05:00
|
|
|
console_handler = logging.StreamHandler()
|
|
|
|
console_handler.setLevel(level)
|
|
|
|
console_handler.setFormatter(Formatter(console_format))
|
|
|
|
root_logger.addHandler(console_handler)
|
2011-11-15 13:39:31 -06:00
|
|
|
|
|
|
|
|
2017-07-18 09:07:12 -05:00
|
|
|
def convert_log_level(value):
|
|
|
|
try:
|
|
|
|
level = int(value)
|
|
|
|
except ValueError:
|
|
|
|
try:
|
|
|
|
level = {
|
|
|
|
'debug': logging.DEBUG,
|
|
|
|
'info': logging.INFO,
|
|
|
|
'warn': logging.WARNING,
|
|
|
|
'warning': logging.WARNING,
|
|
|
|
'error': logging.ERROR,
|
|
|
|
'critical': logging.CRITICAL
|
|
|
|
}[value.lower()]
|
|
|
|
except KeyError:
|
|
|
|
raise ValueError('unknown log level (%s)' % value)
|
|
|
|
return level
|