From 5347d296dcd641e4ec8f9cff7f2392bb7aa7b789 Mon Sep 17 00:00:00 2001 From: zzz <zzz@mail.i2p> Date: Tue, 4 Sep 2012 13:46:52 +0000 Subject: [PATCH] log tweak --- .../src/net/i2p/router/tunnel/pool/TunnelPoolManager.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/router/java/src/net/i2p/router/tunnel/pool/TunnelPoolManager.java b/router/java/src/net/i2p/router/tunnel/pool/TunnelPoolManager.java index cb55b0c5e5..8b082b09f8 100644 --- a/router/java/src/net/i2p/router/tunnel/pool/TunnelPoolManager.java +++ b/router/java/src/net/i2p/router/tunnel/pool/TunnelPoolManager.java @@ -463,8 +463,8 @@ public class TunnelPoolManager implements TunnelManagerFacade { _log.debug("Removing tunnels for the client " + destination); if (_context.clientManager().isLocal(destination)) { // race with buildTunnels() on restart of a client - if (_log.shouldLog(Log.ERROR)) - _log.error("Not removing pool still registered with client manager: " + destination.toBase64(), new Exception("i did it")); + if (_log.shouldLog(Log.WARN)) + _log.warn("Not removing pool still registered with client manager: " + destination.toBase64(), new Exception("i did it")); return; } TunnelPool inbound = _clientInboundPools.remove(destination); -- GitLab