always pass full web service exception details to the log
authorjprocter <Jim Procter>
Mon, 17 May 2010 10:17:14 +0000 (10:17 +0000)
committerjprocter <Jim Procter>
Mon, 17 May 2010 10:17:14 +0000 (10:17 +0000)
src/jalview/ws/AWSThread.java

index d49b245..8d9dce5 100644 (file)
@@ -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)
             {