Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Framework/Core/src/runDataProcessing.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -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.");
}
}

Expand Down
Loading