Skip to content

Commit e16c810

Browse files
committed
DPL: Reduce some verbosity from FATAL to ERROR
1 parent 518b10d commit e16c810

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
@@ -978,16 +978,16 @@ void doDPLException(RuntimeErrorRef& e, char const* processName)
978978
if (err.maxBacktrace != 0) {
979979
LOGP(fatal,
980980
"Unhandled o2::framework::runtime_error reached the top of main of {}, device shutting down."
981-
" Reason: {}"
982-
"\n Backtrace follow: \n",
981+
" Reason: {}",
983982
processName, err.what);
983+
LOGP(error, "Backtrace follow:");
984984
BacktraceHelpers::demangled_backtrace_symbols(err.backtrace, err.maxBacktrace, STDERR_FILENO);
985985
} else {
986986
LOGP(fatal,
987987
"Unhandled o2::framework::runtime_error reached the top of main of {}, device shutting down."
988-
" Reason: {}"
989-
"\n Recompile with DPL_ENABLE_BACKTRACE=1 to get more information.",
988+
" Reason: {}",
990989
processName, err.what);
990+
LOGP(error, "Recompile with DPL_ENABLE_BACKTRACE=1 to get more information.");
991991
}
992992
}
993993

0 commit comments

Comments
 (0)