Delete unneeded pong logging. Resolves issue 352.

This commit is contained in:
Mike Hearn
2013-03-18 10:44:16 +01:00
parent 1ed2459522
commit 311e0549b9

View File

@@ -1197,7 +1197,6 @@ public class Peer {
} }
private void processPong(Pong m) { private void processPong(Pong m) {
log.info("{}: pong! {}", this, m.getNonce());
// Iterates over a snapshot of the list, so we can run unlocked here. // Iterates over a snapshot of the list, so we can run unlocked here.
for (PendingPing ping : pendingPings) { for (PendingPing ping : pendingPings) {
if (m.getNonce() == ping.nonce) { if (m.getNonce() == ping.nonce) {