diff --git a/src/tap/TAPSyncJob.java b/src/tap/TAPSyncJob.java index c403dbb152d7b437a783dde71ab3d1007c7066e3..a1c3c82680fb8d90fd22ef3bb33deb67ed9fc593 100644 --- a/src/tap/TAPSyncJob.java +++ b/src/tap/TAPSyncJob.java @@ -267,7 +267,7 @@ public class TAPSyncJob { // REQUEST ABORTION: else if (error instanceof IOException){ // log the unexpected interruption (unexpected because not caused by a timeout): - service.getLogger().logTAP(LogLevel.INFO, this, "END", "Abortion of the synchronous job " + ID + "! Cause: connection with the HTTP client unexpectedly closed.", null); + service.getLogger().logTAP(LogLevel.INFO, this, "END", "Abortion of the synchronous job " + ID + "! Cause: connection with the HTTP client unexpectedly closed.", error); // throw the error until the TAP instance to notify it about the abortion: throw (IOException)error; }