101 lines
3.1 KiB
Python
101 lines
3.1 KiB
Python
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
import inspect
|
|
import logging
|
|
import logging.config
|
|
import logging.handlers
|
|
import os
|
|
try:
|
|
import syslog
|
|
except ImportError:
|
|
syslog = None
|
|
|
|
from debtcollector import removals
|
|
|
|
|
|
NullHandler = logging.NullHandler
|
|
|
|
|
|
def _get_binary_name():
|
|
return os.path.basename(inspect.stack()[-1][1])
|
|
|
|
|
|
class RFCSysLogHandler(logging.handlers.SysLogHandler):
|
|
"""SysLogHandler following the RFC
|
|
|
|
.. deprecated:: 1.2.0
|
|
Use :class:`OSSysLogHandler` instead
|
|
"""
|
|
|
|
@removals.remove(
|
|
message='use oslo_log.handlers.OSSysLogHandler()',
|
|
version='1.2.0',
|
|
removal_version='?',
|
|
)
|
|
def __init__(self, *args, **kwargs):
|
|
self.binary_name = _get_binary_name()
|
|
super(RFCSysLogHandler, self).__init__(*args, **kwargs)
|
|
|
|
def format(self, record):
|
|
msg = super(RFCSysLogHandler, self).format(record)
|
|
msg = self.binary_name + ' ' + msg
|
|
return msg
|
|
|
|
_AUDIT = logging.INFO + 1
|
|
_TRACE = 5
|
|
|
|
|
|
if syslog is not None:
|
|
class OSSysLogHandler(logging.Handler):
|
|
"""Syslog based handler. Only available on UNIX-like platforms."""
|
|
severity_map = {
|
|
"CRITICAL": syslog.LOG_CRIT,
|
|
"DEBUG": syslog.LOG_DEBUG,
|
|
"ERROR": syslog.LOG_ERR,
|
|
"INFO": syslog.LOG_INFO,
|
|
"WARNING": syslog.LOG_WARNING,
|
|
"WARN": syslog.LOG_WARNING,
|
|
}
|
|
|
|
def __init__(self, facility=syslog.LOG_USER,
|
|
use_syslog_rfc_format=True):
|
|
# Do not use super() unless type(logging.Handler) is 'type'
|
|
# (i.e. >= Python 2.7).
|
|
logging.Handler.__init__(self)
|
|
if use_syslog_rfc_format:
|
|
binary_name = _get_binary_name()
|
|
else:
|
|
binary_name = ""
|
|
syslog.openlog(binary_name, 0, facility)
|
|
|
|
def emit(self, record):
|
|
syslog.syslog(self.severity_map.get(record.levelname,
|
|
syslog.LOG_DEBUG),
|
|
record.getMessage())
|
|
|
|
|
|
class ColorHandler(logging.StreamHandler):
|
|
LEVEL_COLORS = {
|
|
_TRACE: '\033[00;35m', # MAGENTA
|
|
logging.DEBUG: '\033[00;32m', # GREEN
|
|
logging.INFO: '\033[00;36m', # CYAN
|
|
_AUDIT: '\033[01;36m', # BOLD CYAN
|
|
logging.WARN: '\033[01;33m', # BOLD YELLOW
|
|
logging.ERROR: '\033[01;31m', # BOLD RED
|
|
logging.CRITICAL: '\033[01;31m', # BOLD RED
|
|
}
|
|
|
|
def format(self, record):
|
|
record.color = self.LEVEL_COLORS[record.levelno]
|
|
return logging.StreamHandler.format(self, record)
|