We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ad8780 commit 8eac4e8Copy full SHA for 8eac4e8
prdoc/pr_6703.prdoc
@@ -0,0 +1,7 @@
1
+title: 'network/libp2p-backend: Suppress warning adding already reserved node as reserved'
2
+doc:
3
+- audience: Node Dev
4
+ description: Fixes https://github.com/paritytech/polkadot-sdk/issues/6598.
5
+crates:
6
+- name: sc-network
7
+ bump: patch
substrate/client/network/src/protocol_controller.rs
@@ -464,7 +464,7 @@ impl ProtocolController {
464
/// maintain connections with such peers.
465
fn on_add_reserved_peer(&mut self, peer_id: PeerId) {
466
if self.reserved_nodes.contains_key(&peer_id) {
467
- warn!(
+ debug!(
468
target: LOG_TARGET,
469
"Trying to add an already reserved node {peer_id} as reserved on {:?}.",
470
self.set_id,
0 commit comments