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

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

parent 7989a30b
No related branches found
No related tags found
No related merge requests found
......@@ -299,6 +299,7 @@ void MigrationReportPacker::ReportError::execute(MigrationReportPacker& reportPa
params.add("ExceptionMSG", ex.getMessageValue())
.add("fileId", m_failedArchiveJob->archiveFile.archiveFileID);
reportPacker.m_lc.log(cta::log::ERR,"In MigrationReportPacker::ReportError::execute(): call to m_failedArchiveJob->failed() threw an exception.");
reportPacker.m_lc.logBacktrace(cta::log::ERR, ex.backtrace());
}
}
......
......@@ -217,6 +217,7 @@ void RecallReportPacker::ReportError::execute(RecallReportPacker& reportPacker){
params.add("ExceptionMSG", ex.getMessageValue())
.add("fileId", m_failedRetrieveJob->archiveFile.archiveFileID);
reportPacker.m_lc.log(cta::log::ERR,"In RecallReportPacker::ReportError::execute(): call to m_failedRetrieveJob->failed() threw an exception.");
reportPacker.m_lc.logBacktrace(cta::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