diff --git a/polkadot/node/network/statement-distribution/src/v2/cluster.rs b/polkadot/node/network/statement-distribution/src/v2/cluster.rs index 87cdc389cb..c3f45314b2 100644 --- a/polkadot/node/network/statement-distribution/src/v2/cluster.rs +++ b/polkadot/node/network/statement-distribution/src/v2/cluster.rs @@ -442,7 +442,7 @@ impl ClusterTracker { target: LOG_TARGET, pending_statements = ?self.pending, ?parent_hash, - "Cluster has too many pending statements, something wrong with our connection to our group peers \n + "Cluster has too many pending statements, something wrong with our connection to our group peers Restart might be needed if validator gets 0 backing rewards for more than 3-4 consecutive sessions" ); } diff --git a/substrate/client/network/sync/src/strategy/chain_sync.rs b/substrate/client/network/sync/src/strategy/chain_sync.rs index 1a7a18f2ea..fcda259079 100644 --- a/substrate/client/network/sync/src/strategy/chain_sync.rs +++ b/substrate/client/network/sync/src/strategy/chain_sync.rs @@ -1063,7 +1063,7 @@ where let peer = if let Some(peer) = self.peers.get_mut(&peer_id) { peer } else { - error!(target: LOG_TARGET, "💔 Called `on_validated_block_announce` with a bad peer ID"); + error!(target: LOG_TARGET, "💔 Called `on_validated_block_announce` with a bad peer ID {peer_id}"); return Some((hash, number)) };