From 9b2272a1679b87760b193ecc87f994d7f5141c75 Mon Sep 17 00:00:00 2001 From: jprocter Date: Mon, 17 May 2010 10:17:14 +0000 Subject: [PATCH] always pass full web service exception details to the log --- src/jalview/ws/AWSThread.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/jalview/ws/AWSThread.java b/src/jalview/ws/AWSThread.java index d49b245..8d9dce5 100644 --- a/src/jalview/ws/AWSThread.java +++ b/src/jalview/ws/AWSThread.java @@ -97,7 +97,8 @@ public abstract class AWSThread extends Thread + " Server exception!\n" + ex.getMessage()); // always output the exception's stack trace to the log Cache.log.warn(WebServiceName + " job(" + jobs[j].jobnum - + ") Server exception.",ex); + + ") Server exception."); + ex.printStackTrace(); if (jobs[j].allowedServerExceptions > 0) { -- 1.7.10.2