diff --git a/node/actors/network/src/gossip/attestation/mod.rs b/node/actors/network/src/gossip/attestation/mod.rs index ede861af..3db48085 100644 --- a/node/actors/network/src/gossip/attestation/mod.rs +++ b/node/actors/network/src/gossip/attestation/mod.rs @@ -97,7 +97,11 @@ impl State { } // Verify signature only after checking all the other preconditions. vote.verify().context("verify")?; - tracing::info!("collected vote with weight {weight} from {:?}", vote.key); + tracing::info!( + "collected vote for {:?} with weight {weight} from {:?}", + vote.msg.number, + vote.key + ); self.votes.insert(vote.key.clone(), vote); self.total_weight += weight; Ok(())