Skip to content
Snippets Groups Projects
Commit 39d5f1d7 authored by Paul McCarthy's avatar Paul McCarthy
Browse files

Error message can be suppressed with reportIfError context manager

parent fb0e54d8
No related branches found
No related tags found
No related merge requests found
...@@ -139,9 +139,15 @@ def reportError(title, msg, err): ...@@ -139,9 +139,15 @@ def reportError(title, msg, err):
@contextlib.contextmanager @contextlib.contextmanager
def reportIfError(title, msg, raiseError=True): def reportIfError(title, msg, raiseError=True, report=True):
"""A context manager which calls :func:`reportError` if the enclosed code """A context manager which calls :func:`reportError` if the enclosed code
raises an ``Exception``. raises an ``Exception``.
:arg raiseError: If ``True``, the ``Exception`` which was raised is
propagated upwards.
:arg report: Defaults to ``True``. If ``False``, an error message
is logged, but :func:`reportError` is not called.
""" """
try: try:
yield yield
...@@ -150,21 +156,22 @@ def reportIfError(title, msg, raiseError=True): ...@@ -150,21 +156,22 @@ def reportIfError(title, msg, raiseError=True):
log.error('{}: {}'.format(title, msg), exc_info=True) log.error('{}: {}'.format(title, msg), exc_info=True)
reportError(title, msg, e) if report:
reportError(title, msg, e)
if raiseError: if raiseError:
raise raise
def reportErrorDecorator(title, msg): def reportErrorDecorator(*args, **kwargs):
"""A decorator which calls :func:`reportError` if the decorated function """A decorator which wraps the decorated function with
raises an ``Exception``. :func:`reportIfError`.
""" """
def decorator(func): def decorator(func):
def wrapper(*args, **kwargs): def wrapper(*wargs, **wkwargs):
with reportIfError(title, msg): with reportIfError(*args, **kwargs):
func(*args, **kwargs) func(*wargs, **wkwargs)
return wrapper return wrapper
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment