Logger moved to prefs so that class not found error can be handled in main
[jalview.git] / src / jalview / ws / Discoverer.java
index a7f139f..b30a05f 100755 (executable)
@@ -93,7 +93,7 @@ public class Discoverer
     }
     catch (Exception ex)
     {
-      jalview.bin.Jalview.log.error(
+      jalview.bin.Cache.log.error(
           "Serious!  Service location failed\nfor URL :" + WsURL +
           "\n", ex);
 
@@ -127,20 +127,20 @@ public class Discoverer
           if (!urls.contains(u))
             urls.add(u);
           else
-            jalview.bin.Jalview.log.info("Ignoring duplicate url in DISCOVERY_URLS list");
+            jalview.bin.Cache.log.info("Ignoring duplicate url in DISCOVERY_URLS list");
         }
         catch (Exception ex)
         {
-          jalview.bin.Jalview.log.warn(
+          jalview.bin.Cache.log.warn(
               "Problem whilst trying to make a URL from '" +
               ( (url != null) ? url : "<null>")+"'");
-          jalview.bin.Jalview.log.warn("This was probably due to a malformed comma separated list"
+          jalview.bin.Cache.log.warn("This was probably due to a malformed comma separated list"
                                        +" in the DISCOVERY_URLS entry of $(HOME)/.jalview_properties)");
-          jalview.bin.Jalview.log.debug("Exception was ",ex);
+          jalview.bin.Cache.log.debug("Exception was ",ex);
         }
       }
     }catch(Exception ex)
-    {jalview.bin.Jalview.log.warn("Error parsing comma separated list of urls in DISCOVERY_URLS.",ex);}
+    {jalview.bin.Cache.log.warn("Error parsing comma separated list of urls in DISCOVERY_URLS.",ex);}
     if (urls.size()>0)
       return urls;
     return null;
@@ -157,7 +157,7 @@ public class Discoverer
       }
       else
       {
-        jalview.bin.Jalview.log.debug("Setting default services");
+        jalview.bin.Cache.log.debug("Setting default services");
         services = new Hashtable();
         // Muscle, Clustal and JPred.
         ServiceHandle[] defServices = {
@@ -204,14 +204,14 @@ public class Discoverer
     ServiceHandles shs = null;
     try
     {
-      jalview.bin.Jalview.log.debug("Discovering services using " + location);
+      jalview.bin.Cache.log.debug("Discovering services using " + location);
       shs = locateWebService(location).getServices();
     }
     catch (Exception e)
     {
-      jalview.bin.Jalview.log.debug("No Discovery service at " +
+      jalview.bin.Cache.log.debug("No Discovery service at " +
                          location);
-      jalview.bin.Jalview.log.debug(e);
+      jalview.bin.Cache.log.debug(e);
 
     }
     if ( (shs != null) && shs.getServices().length > 0)
@@ -237,7 +237,7 @@ public class Discoverer
     {
       if (!cat.contains(sh[i]))
       {
-        jalview.bin.Jalview.log.debug("A " + sh[i].getAbstractName() +
+        jalview.bin.Cache.log.debug("A " + sh[i].getAbstractName() +
                                       " service called " +
                                       sh[i].getName() + " exists at " +
                                       sh[i].getEndpointURL() + "\n");
@@ -260,7 +260,7 @@ public class Discoverer
               disc_serv = new java.net.URL(sh[i].getEndpointURL());
               if (!ServiceURLList.contains(disc_serv))
               {
-                jalview.bin.Jalview.log.debug(
+                jalview.bin.Cache.log.debug(
                     "Adding new discovery service at " + disc_serv);
                 ServiceURLList.add(disc_serv);
                 seenNewDiscovery = true;
@@ -268,7 +268,7 @@ public class Discoverer
             }
             catch (Exception e)
             {
-              jalview.bin.Jalview.log.debug(
+              jalview.bin.Cache.log.debug(
                   "Ignoring bad discovery service URL " + sh[i].getEndpointURL(),
                   e);
             }
@@ -287,7 +287,7 @@ public class Discoverer
     int s_url = 0;
     if (ServiceURLList==null)
     {
-      jalview.bin.Jalview.log.debug("No service endpoints to use for service discovery.");
+      jalview.bin.Cache.log.debug("No service endpoints to use for service discovery.");
       return;
     }
     while (s_url < ServiceURLList.size())
@@ -297,7 +297,7 @@ public class Discoverer
 
         buildServiceLists(sh, cat, sscat);
       } else {
-        jalview.bin.Jalview.log.warn(
+        jalview.bin.Cache.log.warn(
             "No services at "
             +((java.net.URL) ServiceURLList.get(s_url))
             +" - check DISCOVERY_URLS property in .jalview_properties");