better logging of reseed su3 errors

This commit is contained in:
zzz
2014-07-21 20:05:05 +00:00
parent 9b408b67ef
commit ce4874d825
2 changed files with 3 additions and 2 deletions

View File

@@ -18,7 +18,7 @@ public class RouterVersion {
/** deprecated */
public final static String ID = "Monotone";
public final static String VERSION = CoreVersion.VERSION;
public final static long BUILD = 18;
public final static long BUILD = 19;
/** for example "-test" */
public final static String EXTRA = "";

View File

@@ -534,7 +534,8 @@ public class Reseeder {
break;
}
} catch (Throwable t) {
_log.warn("Error reseeding", t);
System.err.println("Error reseeding: " + t);
_log.error("Error reseeding", t);
errors++;
} finally {
if (contentRaw != null)