SSU: Change peer test log error to warn.

This is caused by an i2pd bug, already fixed.
This commit is contained in:
zzz
2015-02-06 11:18:20 +00:00
parent b9197e35b5
commit b0d09d28f4

View File

@ -345,8 +345,8 @@ class PeerTestManager {
if (test.getAlicePortFromCharlie() > 0)
testComplete(false);
} catch (UnknownHostException uhe) {
if (_log.shouldLog(Log.ERROR))
_log.error("Unable to get our IP (length " + ipSize +
if (_log.shouldLog(Log.WARN))
_log.warn("Unable to get our IP (length " + ipSize +
") from bob's reply: " + from + ", " + testInfo, uhe);
_context.statManager().addRateData("udp.testBadIP", 1);
}