X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fbin%2FCache.java;h=0744cd9e18b854c37a0f837e297a3794b83ab99c;hb=c24267ee9b42f032d0d1a561b6fb05b03d754460;hp=ef37ebddb08bfbf414ee18fc7f14d771383f39c4;hpb=4f90c01f2b85f6c042ddba89e4dacb8cc2f86881;p=jalview.git diff --git a/src/jalview/bin/Cache.java b/src/jalview/bin/Cache.java index ef37ebd..0744cd9 100755 --- a/src/jalview/bin/Cache.java +++ b/src/jalview/bin/Cache.java @@ -53,6 +53,7 @@ import org.apache.log4j.*; *
  • SHOW_QUALITY show alignment quality annotation *
  • SHOW_ANNOTATIONS show alignment annotation rows *
  • SHOW_CONSERVATION show alignment conservation annotation + *
  • CENTRE_COLUMN_LABELS centre the labels at each column in a displayed annotation row *
  • DEFAULT_COLOUR default colour scheme to apply for a new alignment *
  • DEFAULT_FILE_FORMAT file format used to save *
  • STARTUP_FILE file loaded on startup (may be a fully qualified url) @@ -102,7 +103,7 @@ public class Cache /** * property giving log4j level for AXIS loggers */ - public static final String AXISLOGLEVEL = "logs.Castor.level"; + public static final String AXISLOGLEVEL = "logs.Axis.level"; /** * property giving log4j level for Jalview Log */ @@ -139,6 +140,9 @@ public class Cache lcastor = Logger.getLogger("org.exolab.castor.xml"); lcastor.setLevel(Level.toLevel(Cache.getDefault("logs.Castor.Level", Level.INFO.toString()))); + //lcastor = Logger.getLogger("org.exolab.castor.xml.Marshaller"); + //lcastor.setLevel(Level.toLevel(Cache.getDefault("logs.Castor.Level", + // Level.INFO.toString()))); jalview.bin.Cache.log.setLevel(Level.toLevel(Cache.getDefault( "logs.Jalview.level", Level.INFO.toString()))); @@ -234,9 +238,16 @@ public class Cache { public void run() { + String orgtimeout = System.getProperty("sun.net.client.defaultConnectTimeout"); + if (orgtimeout==null) + { + orgtimeout="30"; + System.out.println("# INFO: Setting default net timeout to "+orgtimeout+" seconds."); + } String jnlpVersion = null; try { + System.setProperty("sun.net.client.defaultConnectTimeout", "5000"); java.net.URL url = new java.net.URL( "http://www.jalview.org/webstart/jalview.jnlp"); BufferedReader in = new BufferedReader(new InputStreamReader(url. @@ -257,9 +268,11 @@ public class Cache } catch (Exception ex) { + System.out.println("Non-fatal exceptions when checking version at www.jalview.org :"); System.out.println(ex); jnlpVersion = getProperty("VERSION"); } + System.setProperty("sun.net.client.defaultConnectTimeout", orgtimeout); setProperty("LATEST_VERSION", jnlpVersion); }