From c7a0b68676510610687baf3ae1343eaa72f6fd9a Mon Sep 17 00:00:00 2001 From: Mateusz Warowny Date: Wed, 21 Jul 2021 18:08:38 +0200 Subject: [PATCH] JAL-3848 print exception for failed align jobs --- src/jalview/ws/gui/MsaWSThread.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/jalview/ws/gui/MsaWSThread.java b/src/jalview/ws/gui/MsaWSThread.java index 7141e73..48846ef 100644 --- a/src/jalview/ws/gui/MsaWSThread.java +++ b/src/jalview/ws/gui/MsaWSThread.java @@ -288,6 +288,7 @@ public class MsaWSThread extends AWSThread implements WSClientI } catch (Throwable throwable) { + Cache.log.error("failed to send the job to the alignment server", throwable); if (!server.handleSubmitError(throwable, j, wsInfo)) { if (throwable instanceof Exception) -- 1.7.10.2