Skip to content

Commit

Permalink
#LUC070-147 Additional logging to try and work out what is going on
Browse files Browse the repository at this point in the history
  • Loading branch information
dspeed2 committed Dec 16, 2024
1 parent 405d07b commit bf17eed
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,11 @@ public void performAction(Context context) {
deleteFromArchiveStorage(context, archiveFs, tarFileName, tarFile);
}
}


logger.info("Sending delete complete event");
eventSender.send(new DeleteComplete(this.jobID, this.depositId).withNextState(1)
.withUserId(this.userID));
logger.info("Sent delete complete event");

} catch (Exception e) {
String msg = "Deposit delete failed: " + e.getMessage();
Expand Down

0 comments on commit bf17eed

Please sign in to comment.