diff --git a/supportedBackends/tes/src/main/scala/cromwell/backend/impl/tes/TesAsyncBackendJobExecutionActor.scala b/supportedBackends/tes/src/main/scala/cromwell/backend/impl/tes/TesAsyncBackendJobExecutionActor.scala index 335ee40b466..255f9c811dc 100644 --- a/supportedBackends/tes/src/main/scala/cromwell/backend/impl/tes/TesAsyncBackendJobExecutionActor.scala +++ b/supportedBackends/tes/src/main/scala/cromwell/backend/impl/tes/TesAsyncBackendJobExecutionActor.scala @@ -380,7 +380,7 @@ class TesAsyncBackendJobExecutionActor(override val standardParams: StandardAsyn HttpRequest(method = HttpMethods.POST, uri = s"$tesEndpoint/${job.jobId}:cancel") ) onComplete { case Success(_) => jobLogger.info("{} Aborted {}", tag: Any, job.jobId) - case Failure(ex) => jobLogger.warn("{} Failed to abort {}: {}", tag, job.jobId, ex.getMessage) + case Failure(ex) => jobLogger.warn("{} Failed to abort {}", tag, job.jobId, ex) } ()