Skip to content
Snippets Groups Projects
Commit 68b56833 authored by Eric Cano's avatar Eric Cano
Browse files

Added backtrace to logs for Archive/RetrieveJob::failed().

parent 61b0d7b5
No related branches found
No related tags found
No related merge requests found
Pipeline #32514 failed
......@@ -148,6 +148,7 @@ void cta::ArchiveJob::failed(const std::string &failureReason, log::LogContext
.add("exceptionMsg", ex.getMessageValue())
.add("reportTime", t.secs());
lc.log(log::ERR, "In ArchiveJob::failed(): failed to report error to client.");
lc.logBacktrace(log::ERR, ex.backtrace());
}
}
}
......
......@@ -93,6 +93,7 @@ void cta::RetrieveJob::failed(const std::string & failureReason, log::LogContext
.add("exceptionMsg", ex.getMessageValue())
.add("reportTime", t.secs());
lc.log(log::ERR, "In RetrieveJob::failed(): failed to report error to client.");
lc.logBacktrace(log::ERR, ex.backtrace());
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment