X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fws%2Fslivkaws%2FSlivkaAnnotationServiceInstance.java;h=999951ad51b18c427cb1a37d7b1bc9f7378d0ded;hb=d043ce47fc710d3eb2629ba926a8a7417bd67d8c;hp=c42d42e4f1ca1f7137c825a54d3408bc5059433a;hpb=49db0dff1da16c3355b43a41498c1fc93ef47e91;p=jalview.git diff --git a/src/jalview/ws/slivkaws/SlivkaAnnotationServiceInstance.java b/src/jalview/ws/slivkaws/SlivkaAnnotationServiceInstance.java index c42d42e..999951a 100644 --- a/src/jalview/ws/slivkaws/SlivkaAnnotationServiceInstance.java +++ b/src/jalview/ws/slivkaws/SlivkaAnnotationServiceInstance.java @@ -2,6 +2,7 @@ package jalview.ws.slivkaws; import jalview.api.FeatureColourI; import jalview.bin.Cache; +import jalview.bin.Console; import jalview.datamodel.Alignment; import jalview.datamodel.AlignmentAnnotation; import jalview.datamodel.SequenceI; @@ -85,18 +86,18 @@ public class SlivkaAnnotationServiceInstance extends SlivkaWSInstance implements if (annotFile == null || !new AnnotationFile().readAnnotationFileWithCalcId(aln, service.getId(), annotFile.getContentUrl().toString(), DataSourceType.URL)) { - Cache.log.debug("No annotation from slivka job\n" + annotFile); + Console.debug("No annotation from slivka job\n" + annotFile); } else { - Cache.log.debug("Annotation file loaded " + annotFile); + Console.debug("Annotation file loaded " + annotFile); } if (featFile == null || !new FeaturesFile(featFile.getContentUrl().toString(), DataSourceType.URL).parse(aln, featureColours, true)) { - Cache.log.debug("No features from slivka job\n" + featFile); + Console.debug("No features from slivka job\n" + featFile); } else { - Cache.log.debug("Features feil loaded " + featFile); + Console.debug("Features feil loaded " + featFile); } return Arrays.asList(aln.getAlignmentAnnotation()); }