Skip to content

Commit

Permalink
improve logging
Browse files Browse the repository at this point in the history
Co-authored-by: teor <[email protected]>
  • Loading branch information
oxarbitrage and teor2345 authored Feb 15, 2022
1 parent c882606 commit dc6679b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions zebra-network/src/peer/handshake.rs
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,7 @@ where
.next()
.await
.ok_or(HandshakeError::ConnectionClosed)??;
debug!("ignoring non-version message from remote peer");
debug!(?remote_msg, "ignoring non-version message from remote peer");
}
}
}
Expand Down Expand Up @@ -733,7 +733,7 @@ where
.next()
.await
.ok_or(HandshakeError::ConnectionClosed)??;
debug!("ignoring non-verack message from remote peer");
debug!(?remote_msg, "ignoring non-verack message from remote peer");
}
}
}
Expand Down

0 comments on commit dc6679b

Please sign in to comment.