Merge branch 'develop' into update_212_Dec_merge_with_21125_chamges
[jalview.git] / src / jalview / ws / slivkaws / SlivkaAnnotationServiceInstance.java
index c42d42e..999951a 100644 (file)
@@ -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());
   }