Skip to content

Commit a26a975

Browse files
committed
DPL: Reduce some verbosity from FATAL to ERROR
1 parent c10424c commit a26a975

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Framework/Core/src/runDataProcessing.cxx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -977,16 +977,16 @@ void doDPLException(RuntimeErrorRef& e, char const* processName)
977977
if (err.maxBacktrace != 0) {
978978
LOGP(fatal,
979979
"Unhandled o2::framework::runtime_error reached the top of main of {}, device shutting down."
980-
" Reason: {}"
981-
"\n Backtrace follow: \n",
980+
" Reason: {}",
982981
processName, err.what);
982+
LOGP(error, "Backtrace follow:");
983983
BacktraceHelpers::demangled_backtrace_symbols(err.backtrace, err.maxBacktrace, STDERR_FILENO);
984984
} else {
985985
LOGP(fatal,
986986
"Unhandled o2::framework::runtime_error reached the top of main of {}, device shutting down."
987-
" Reason: {}"
988-
"\n Recompile with DPL_ENABLE_BACKTRACE=1 to get more information.",
987+
" Reason: {}",
989988
processName, err.what);
989+
LOGP(error, "Recompile with DPL_ENABLE_BACKTRACE=1 to get more information.");
990990
}
991991
}
992992

0 commit comments

Comments
 (0)