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

Skip to content
Snippets Groups Projects
Unverified Commit 138d6746 authored by zzz's avatar zzz
Browse files

SSU2: Reduce log level of 'new ack not found'

parent 9b0ace19
No related branches found
No related tags found
No related merge requests found
......@@ -972,9 +972,11 @@ public class PeerState2 extends PeerState implements SSU2Payload.PayloadCallback
}
List<PacketBuilder.Fragment> fragments = _sentMessages.remove(Long.valueOf(pktNum));
if (fragments == null) {
// shouldn't happen
if (_log.shouldWarn())
_log.warn("New ACK of pkt " + pktNum + " not found on " + this);
// TODO
// peer test, relay, path challenge/response
// We don't track these and route the acks anywhere
if (_log.shouldDebug())
_log.debug("New ACK of pkt " + pktNum + " not found on " + this);
return;
}
if (_log.shouldDebug())
......
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