From c528e4db03aecc6780f8cea9b72cde705c910b75 Mon Sep 17 00:00:00 2001 From: jrandom <jrandom> Date: Thu, 29 Sep 2005 19:24:43 +0000 Subject: [PATCH] * 2005-09-29 0.6.1 released 2005-09-29 jrandom * Let syndie users modify their metadata. * Reseed the router on startup if there aren't enough peer references known locally. This can be disabled by creating the file .i2pnoreseed in your home directory, and the existing detection and reseed handling on the web interface is unchanged. --- .../src/net/i2p/router/client/ClientConnectionRunner.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/router/java/src/net/i2p/router/client/ClientConnectionRunner.java b/router/java/src/net/i2p/router/client/ClientConnectionRunner.java index c0f711cf8d..83b80137a7 100644 --- a/router/java/src/net/i2p/router/client/ClientConnectionRunner.java +++ b/router/java/src/net/i2p/router/client/ClientConnectionRunner.java @@ -115,9 +115,9 @@ public class ClientConnectionRunner { /** die a horrible death */ void stopRunning() { if (_dead) return; - if (_context.router().isAlive()) - _log.error("Stop the I2CP connection! current leaseSet: " - + _currentLeaseSet, new Exception("Stop client connection")); + if (_context.router().isAlive() && _log.shouldLog(Log.WARN)) + _log.warn("Stop the I2CP connection! current leaseSet: " + + _currentLeaseSet, new Exception("Stop client connection")); _dead = true; // we need these keys to unpublish the leaseSet if (_reader != null) _reader.stopReading(); -- GitLab