From 5b3e31266b7097c13006c845914fbf6e2b17432a Mon Sep 17 00:00:00 2001 From: Pierre Krieger Date: Wed, 24 Apr 2019 11:58:08 +0200 Subject: [PATCH] Silence the spam a little bit (#2362) --- substrate/core/network-libp2p/src/custom_proto/handler.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/substrate/core/network-libp2p/src/custom_proto/handler.rs b/substrate/core/network-libp2p/src/custom_proto/handler.rs index d464ed37a9..beac1dec25 100644 --- a/substrate/core/network-libp2p/src/custom_proto/handler.rs +++ b/substrate/core/network-libp2p/src/custom_proto/handler.rs @@ -690,7 +690,7 @@ where } ProtocolState::BackCompat { substream: existing, mut shutdown } => { - warn!(target: "sub-libp2p", "Received extra substream after having already one \ + debug!(target: "sub-libp2p", "Received extra substream after having already one \ open in backwards-compatibility mode with {:?}", self.remote_peer_id); substream.shutdown(); shutdown.push(substream);