Skip to content

Commit

Permalink
adding subfolder to error logs
Browse files Browse the repository at this point in the history
  • Loading branch information
sree-cfa committed Jan 9, 2024
1 parent 1218781 commit 3b7f0c5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ public void transferSubmissions() {
} catch (Exception e) {
log.error("Error generating file collection for submission ID {}", submission.getId(), e);

transmission.setDocumentationErrors(Map.of("error", e.getMessage()));
transmission.setDocumentationErrors(Map.of("error", e.getMessage(),"subfolder", subfolder));
transmission.setStatus(TransmissionStatus.Failed);
updateTransmission(uuid, transmission);
failed++;
Expand Down

0 comments on commit 3b7f0c5

Please sign in to comment.