From 4d0c2e93bfad1f0c702ca7f9e833d2fc48ba5bcb Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Tue, 22 Oct 2019 21:49:53 +1030 Subject: [PATCH] common: remove spammy debug msg. Signed-off-by: Rusty Russell --- common/read_peer_msg.c | 1 - 1 file changed, 1 deletion(-) diff --git a/common/read_peer_msg.c b/common/read_peer_msg.c index 0567c84d1..08ebfc582 100644 --- a/common/read_peer_msg.c +++ b/common/read_peer_msg.c @@ -117,7 +117,6 @@ void handle_gossip_msg(struct per_peer_state *pps, const u8 *msg TAKES) /* It's a raw gossip msg: this copies or takes() */ gossip = tal_dup_arr(tmpctx, u8, msg, tal_bytelen(msg), 0); - status_debug("Gossipd told us to send %s", tal_hex(tmpctx, gossip)); /* Gossipd can send us gossip messages, OR errors */ if (fromwire_peektype(gossip) == WIRE_ERROR) { sync_crypto_write(pps, gossip);