I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit 88e7d60e authored by zzz's avatar zzz
Browse files

* IRC Client: Lower log level for connect error to warn (thx echelon/sponge)

parent 0d145fc7
No related branches found
No related tags found
No related merge requests found
...@@ -9,6 +9,7 @@ import java.util.ArrayList; ...@@ -9,6 +9,7 @@ import java.util.ArrayList;
import java.util.List; import java.util.List;
import java.util.StringTokenizer; import java.util.StringTokenizer;
import net.i2p.I2PException;
import net.i2p.client.streaming.I2PSocket; import net.i2p.client.streaming.I2PSocket;
import net.i2p.data.Base32; import net.i2p.data.Base32;
import net.i2p.data.Destination; import net.i2p.data.Destination;
...@@ -112,7 +113,7 @@ public class I2PTunnelIRCClient extends I2PTunnelClientBase { ...@@ -112,7 +113,7 @@ public class I2PTunnelIRCClient extends I2PTunnelClientBase {
in.start(); in.start();
Thread out = new I2PAppThread(new IrcOutboundFilter(s,i2ps, expectedPong, _log, dcc), "IRC Client " + __clientId + " out", true); Thread out = new I2PAppThread(new IrcOutboundFilter(s,i2ps, expectedPong, _log, dcc), "IRC Client " + __clientId + " out", true);
out.start(); out.start();
} catch (Exception ex) { } catch (I2PException ex) {
if (_log.shouldLog(Log.ERROR)) if (_log.shouldLog(Log.ERROR))
_log.error("Error connecting", ex); _log.error("Error connecting", ex);
//l.log("Error connecting: " + ex.getMessage()); //l.log("Error connecting: " + ex.getMessage());
...@@ -122,6 +123,17 @@ public class I2PTunnelIRCClient extends I2PTunnelClientBase { ...@@ -122,6 +123,17 @@ public class I2PTunnelIRCClient extends I2PTunnelClientBase {
mySockets.remove(sockLock); mySockets.remove(sockLock);
} }
} }
} catch (Exception ex) {
// generally NoRouteToHostException
if (_log.shouldLog(Log.WARN))
_log.warn("Error connecting", ex);
//l.log("Error connecting: " + ex.getMessage());
closeSocket(s);
if (i2ps != null) {
synchronized (sockLock) {
mySockets.remove(sockLock);
}
}
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment