mirror of
https://github.com/Garmelon/PFERD.git
synced 2023-12-21 10:23:01 +01:00
29 lines
738 B
Python
29 lines
738 B
Python
"""
|
|
An error logging decorator.
|
|
"""
|
|
|
|
import logging
|
|
from typing import Any, Callable
|
|
|
|
from .logging import FatalException, PrettyLogger
|
|
|
|
LOGGER = logging.getLogger(__name__)
|
|
PRETTY = PrettyLogger(LOGGER)
|
|
|
|
|
|
def swallow_and_print_errors(function: Callable) -> Callable:
|
|
"""
|
|
Decorates a function, swallows all errors, logs them and returns none if one occurred.
|
|
"""
|
|
def inner(*args: Any, **kwargs: Any) -> Any:
|
|
# pylint: disable=broad-except
|
|
try:
|
|
return function(*args, **kwargs)
|
|
except FatalException as error:
|
|
PRETTY.error(str(error))
|
|
return None
|
|
except Exception as error:
|
|
Console().print_exception()
|
|
return None
|
|
return inner
|