Skip to content

Commit

Permalink
chore: change log stats to debug level
Browse files Browse the repository at this point in the history
  • Loading branch information
marverlous811 committed Nov 22, 2024
1 parent 33242a4 commit 5de7bbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ impl<SECURE: HandshakeProtocol> P2pNetwork<SECURE> {
Ok(P2pNetworkEvent::PeerDisconnected(conn, peer))
}
InternalEvent::PeerStats(conn, to_peer, metrics) => {
log::info!("[P2pNetwork] conn {conn} to peer {to_peer} metrics {:?}", metrics);
log::debug!("[P2pNetwork] conn {conn} to peer {to_peer} metrics {:?}", metrics);
self.ctx.update_metrics(&conn, to_peer, metrics);
Ok(P2pNetworkEvent::Continue)
}
Expand Down

0 comments on commit 5de7bbf

Please sign in to comment.