From a26a975f554fdd8dd560301ce0f5b7b60239f1e8 Mon Sep 17 00:00:00 2001 From: David Rohr Date: Sun, 19 Jan 2025 14:29:02 +0100 Subject: [PATCH] DPL: Reduce some verbosity from FATAL to ERROR --- Framework/Core/src/runDataProcessing.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Framework/Core/src/runDataProcessing.cxx b/Framework/Core/src/runDataProcessing.cxx index c8f77ab7082e6..30d524be88a5f 100644 --- a/Framework/Core/src/runDataProcessing.cxx +++ b/Framework/Core/src/runDataProcessing.cxx @@ -977,16 +977,16 @@ void doDPLException(RuntimeErrorRef& e, char const* processName) if (err.maxBacktrace != 0) { LOGP(fatal, "Unhandled o2::framework::runtime_error reached the top of main of {}, device shutting down." - " Reason: {}" - "\n Backtrace follow: \n", + " Reason: {}", processName, err.what); + LOGP(error, "Backtrace follow:"); BacktraceHelpers::demangled_backtrace_symbols(err.backtrace, err.maxBacktrace, STDERR_FILENO); } else { LOGP(fatal, "Unhandled o2::framework::runtime_error reached the top of main of {}, device shutting down." - " Reason: {}" - "\n Recompile with DPL_ENABLE_BACKTRACE=1 to get more information.", + " Reason: {}", processName, err.what); + LOGP(error, "Recompile with DPL_ENABLE_BACKTRACE=1 to get more information."); } }