From 3ac9f94a08eac7843b6fa1c040221052ad254843 Mon Sep 17 00:00:00 2001 From: Jim Bosch Date: Fri, 23 Aug 2024 12:06:27 -0400 Subject: [PATCH] Lower logging by AnnotatedPartialOutputsError to DEBUG. It should be the responsibility of higher-level catching code to decide whether to log loudly or re-raise instead. --- python/lsst/pipe/base/_status.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/lsst/pipe/base/_status.py b/python/lsst/pipe/base/_status.py index e74187e3..0d2f754f 100644 --- a/python/lsst/pipe/base/_status.py +++ b/python/lsst/pipe/base/_status.py @@ -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, )