Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
fslpy
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Analyze
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
FSL
fslpy
Commits
39d5f1d7
Commit
39d5f1d7
authored
7 years ago
by
Paul McCarthy
Browse files
Options
Downloads
Patches
Plain Diff
Error message can be suppressed with reportIfError context manager
parent
fb0e54d8
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
fsl/utils/status.py
+15
-8
15 additions, 8 deletions
fsl/utils/status.py
with
15 additions
and
8 deletions
fsl/utils/status.py
+
15
−
8
View file @
39d5f1d7
...
@@ -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
(
*
w
args
,
**
w
kwargs
):
with
reportIfError
(
title
,
msg
):
with
reportIfError
(
*
args
,
**
kwargs
):
func
(
*
args
,
**
kwargs
)
func
(
*
w
args
,
**
w
kwargs
)
return
wrapper
return
wrapper
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment