From 60209d0e885ccb5a522394d43b14806749c90321 Mon Sep 17 00:00:00 2001 From: Nate Coraor Date: Mon, 14 Oct 2024 12:30:24 -0400 Subject: [PATCH] Log `JobMappingException`s at error level rather than debug --- lib/galaxy/jobs/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/galaxy/jobs/__init__.py b/lib/galaxy/jobs/__init__.py index 4ad932893b76..b7ad2d31641b 100644 --- a/lib/galaxy/jobs/__init__.py +++ b/lib/galaxy/jobs/__init__.py @@ -1402,7 +1402,7 @@ def fail( try: self.job_destination # noqa: B018 except JobMappingException as exc: - log.debug( + log.error( "(%s) fail(): Job destination raised JobMappingException('%s'), caching fake '__fail__' " "destination for completion of fail method", self.get_id_tag(),