Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
dCache
cta
Commits
612b095b
Commit
612b095b
authored
Jun 28, 2018
by
Eric Cano
Browse files
Added more backtrace to logs for Archive/RetrieveJob::failed().
parent
c6ca7b6f
Changes
2
Hide whitespace changes
Inline
Side-by-side
tapeserver/castor/tape/tapeserver/daemon/MigrationReportPacker.cpp
View file @
612b095b
...
...
@@ -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
());
}
}
...
...
tapeserver/castor/tape/tapeserver/daemon/RecallReportPacker.cpp
View file @
612b095b
...
...
@@ -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
());
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment