# Copyright (c) 2015 SUSE Linux GmbH. All rights reserved.
#
# This file is part of kiwi.
#
# kiwi 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.
#
# kiwi 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 kiwi. If not, see <http://www.gnu.org/licenses/>
#
import logging
[docs]
class LoggerSchedulerFilter(logging.Filter):
"""
**Extended standard logging Filter**
"""
[docs]
def filter(self, record: logging.LogRecord) -> bool:
"""
Messages from apscheduler scheduler instances are filtered out
They conflict with console progress information
:param tuple record: logging message record
:return: True|False
:rtype: bool
"""
ignorables = [
'apscheduler.scheduler',
'apscheduler.executors.default'
]
return bool(record.name not in ignorables)
[docs]
class InfoFilter(logging.Filter):
"""
**Extended standard logging Filter**
"""
[docs]
def filter(self, record: logging.LogRecord) -> bool:
"""
Only messages with record level INFO can pass
for messages with another level an extra handler is used
:param tuple record: logging message record
:return: True|False
:rtype: bool
"""
return True if record.levelno == logging.INFO else False
[docs]
class DebugFilter(logging.Filter):
"""
**Extended standard debug logging Filter**
"""
[docs]
def filter(self, record: logging.LogRecord) -> bool:
"""
Only messages with record level DEBUG can pass
for messages with another level an extra handler is used
:param tuple record: logging message record
:return: True|False
:rtype: bool
"""
return True if record.levelno == logging.DEBUG else False
[docs]
class ErrorFilter(logging.Filter):
"""
**Extended standard error logging Filter**
"""
[docs]
def filter(self, record: logging.LogRecord) -> bool:
"""
Only messages with record level DEBUG can pass
for messages with another level an extra handler is used
:param tuple record: logging message record
:return: True|False
:rtype: bool
"""
return True if record.levelno == logging.ERROR else False
[docs]
class WarningFilter(logging.Filter):
"""
**Extended standard warning logging Filter**
"""
[docs]
def filter(self, record: logging.LogRecord) -> bool:
"""
Only messages with record level WARNING can pass
for messages with another level an extra handler is used
:param tuple record: logging message record
:return: True|False
:rtype: bool
"""
return True if record.levelno == logging.WARNING else False