X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fws%2Fjws1%2FJPredThread.java;fp=src%2Fjalview%2Fws%2Fjws1%2FJPredThread.java;h=a39945edefa78f84f36baa4aab500a23d69c1e37;hb=3efc24bc7b7855ff135fa96e35ab1004eaeb4f5e;hp=23d9eb031e973bbde0dbc6bd6fdf3abf9d0cb43c;hpb=dae56c38c3f14e96308540c30f35ca8f1d917edf;p=jalview.git diff --git a/src/jalview/ws/jws1/JPredThread.java b/src/jalview/ws/jws1/JPredThread.java index 23d9eb0..a39945e 100644 --- a/src/jalview/ws/jws1/JPredThread.java +++ b/src/jalview/ws/jws1/JPredThread.java @@ -22,7 +22,7 @@ package jalview.ws.jws1; import jalview.analysis.AlignSeq; import jalview.analysis.SeqsetUtils; -import jalview.bin.Cache; +import jalview.bin.Console; import jalview.datamodel.Alignment; import jalview.datamodel.AlignmentAnnotation; import jalview.datamodel.AlignmentI; @@ -119,17 +119,17 @@ class JPredThread extends JWS1Thread implements WSClientI JpredResult result = (JpredResult) this.result; - Cache.log.debug("Parsing output from JNet job."); + Console.debug("Parsing output from JNet job."); // JPredFile prediction = new JPredFile("C:/JalviewX/files/jpred.txt", // "File"); JPredFile prediction = new JPredFile(result.getPredfile(), DataSourceType.PASTE); SequenceI[] preds = prediction.getSeqsAsArray(); - Cache.log.debug("Got prediction profile."); + Console.debug("Got prediction profile."); if ((this.msa != null) && (result.getAligfile() != null)) { - Cache.log.debug("Getting associated alignment."); + Console.debug("Getting associated alignment."); // we ignore the returned alignment if we only predicted on a single // sequence FileFormatI format = new IdentifyFile() @@ -461,7 +461,7 @@ class JPredThread extends JWS1Thread implements WSClientI { job.setSubmitted(true); job.setSubjobComplete(false); - Cache.log.info(WsUrl + " Job Id '" + job.getJobId() + "'"); + Console.info(WsUrl + " Job Id '" + job.getJobId() + "'"); } } else @@ -484,7 +484,7 @@ class JPredThread extends JWS1Thread implements WSClientI "JPredWS Client: Failed to submit the prediction. Quite possibly because of a server error - see below)\n" + e.getMessage() + "\n"); - jalview.bin.Cache.log.warn("Server Exception", e); + Console.warn("Server Exception", e); } else { @@ -495,8 +495,7 @@ class JPredThread extends JWS1Thread implements WSClientI "info.failed_to_submit_prediction", new String[] { e.getMessage(), wsInfo.getProgressText() })); - jalview.bin.Cache.log - .debug("Failed Submission of job " + j.getJobnum(), e); + Console.debug("Failed Submission of job " + j.getJobnum(), e); } j.setAllowedServerExceptions(-1); @@ -523,7 +522,7 @@ class JPredThread extends JWS1Thread implements WSClientI } catch (Exception ex) { - Cache.log.error( + Console.error( "Unexpected exception when processing results for " + altitle, ex); wsInfo.setStatus(WebserviceInfo.STATE_STOPPED_ERROR); @@ -577,9 +576,9 @@ class JPredThread extends JWS1Thread implements WSClientI msa = (j.msa != null) ? true : msa; try { - jalview.bin.Cache.log.debug("Parsing output of job " + jn); + Console.debug("Parsing output of job " + jn); jobres = j.getResultSet(); - jalview.bin.Cache.log.debug("Finished parsing output."); + Console.debug("Finished parsing output."); if (jobs.length == 1) { res = jobres; @@ -592,8 +591,7 @@ class JPredThread extends JWS1Thread implements WSClientI } } catch (Exception e) { - jalview.bin.Cache.log - .error("JNet Client: JPred Annotation Parse Error", e); + Console.error("JNet Client: JPred Annotation Parse Error", e); wsInfo.setStatus(j.getJobnum(), WebserviceInfo.STATE_STOPPED_ERROR); wsInfo.appendProgressText(j.getJobnum(), @@ -652,7 +650,7 @@ class JPredThread extends JWS1Thread implements WSClientI } else { - Cache.log.info("Append results onto existing alignment."); + Console.info("Append results onto existing alignment."); } } }