Skip to content

Commit

Permalink
Lower logging by AnnotatedPartialOutputsError to DEBUG.
Browse files Browse the repository at this point in the history
It should be the responsibility of higher-level catching code to
decide whether to log loudly or re-raise instead.
  • Loading branch information
TallJimbo committed Aug 23, 2024
1 parent fe85a52 commit 3ac9f94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/lsst/pipe/base/_status.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ def runQuantum(self, butlerQC, inputRefs, outputRefs):
continue
item.metadata.set_dict("failure", failure_info) # type: ignore

log.exception(
log.debug(
"Task failed with only partial outputs; see exception message for details.",
exc_info=error,
)
Expand Down

0 comments on commit 3ac9f94

Please sign in to comment.