Skip to content

Commit

Permalink
Use Debug for genesis mismatch message (paritytech#8449)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomaka authored and jordy25519 committed Sep 17, 2021
1 parent 99ae85a commit 024fbcd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/network/src/protocol.rs
Original file line number Diff line number Diff line change
Expand Up @@ -665,7 +665,7 @@ impl<B: BlockT> Protocol<B> {
if status.genesis_hash != self.genesis_hash {
log!(
target: "sync",
if self.important_peers.contains(&who) { Level::Warn } else { Level::Trace },
if self.important_peers.contains(&who) { Level::Warn } else { Level::Debug },
"Peer is on different chain (our genesis: {} theirs: {})",
self.genesis_hash, status.genesis_hash
);
Expand Down

0 comments on commit 024fbcd

Please sign in to comment.