feat: full peer id as a debug statement (#1943)

Co-authored-by: Bjerg <onbjerg@users.noreply.github.com>
This commit is contained in:
Ryan Orendorff
2023-03-23 22:47:33 -06:00
committed by GitHub
parent 790541a710
commit c5f197dd95

View File

@ -208,6 +208,7 @@ impl Command {
.start_network(network_config, &ctx.task_executor, transaction_pool.clone())
.await?;
info!(target: "reth::cli", peer_id = %network.peer_id(), local_addr = %network.local_addr(), "Connected to P2P network");
debug!(target: "reth::cli", peer_id = ?network.peer_id(), "Full peer ID");
let _rpc_server = self
.rpc