From: jprocter Date: Mon, 29 Aug 2011 15:54:25 +0000 (+0100) Subject: JAL-715 - grammar for warning message. X-Git-Tag: Release_2_7~73 X-Git-Url: http://source.jalview.org/gitweb/?a=commitdiff_plain;h=103537027565373cdf6dbc4e7d63cf8e5387b2bb;p=jalview.git JAL-715 - grammar for warning message. --- diff --git a/src/jalview/ws/rest/RestJobThread.java b/src/jalview/ws/rest/RestJobThread.java index 799c7b4..4bc183a 100644 --- a/src/jalview/ws/rest/RestJobThread.java +++ b/src/jalview/ws/rest/RestJobThread.java @@ -238,8 +238,8 @@ public class RestJobThread extends AWSThread response = httpclient.execute(request); } catch (ClientProtocolException he) { - rj.statMessage = "Web Protocol Exception when attempting to " - + getStage(stg) + "Job. See Console output for details."; + rj.statMessage = "Web Protocol Exception when " + + getStage(stg) + "Job.
Problematic url was "+request.getURI()+"
See Console output for details."; rj.setAllowedServerExceptions(0);// unrecoverable; rj.error = true; Cache.log.fatal("Unexpected REST Job " + getStage(stg) @@ -247,8 +247,8 @@ public class RestJobThread extends AWSThread throw (he); } catch (IOException e) { - rj.statMessage = "IO Exception when attempting to " - + getStage(stg) + "Job. See Console output for details."; + rj.statMessage = "IO Exception when " + + getStage(stg) + "Job.
Problematic url was "+request.getURI()+"
See Console output for details."; Cache.log.warn("IO Exception for REST Job " + getStage(stg) + "exception for URL " + rj.rsd.postUrl);