Browse Source

common: remove spammy debug msg.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
travis-debug
Rusty Russell 5 years ago
committed by neil saitug
parent
commit
4d0c2e93bf
  1. 1
      common/read_peer_msg.c

1
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() */ /* It's a raw gossip msg: this copies or takes() */
gossip = tal_dup_arr(tmpctx, u8, msg, tal_bytelen(msg), 0); 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 */ /* Gossipd can send us gossip messages, OR errors */
if (fromwire_peektype(gossip) == WIRE_ERROR) { if (fromwire_peektype(gossip) == WIRE_ERROR) {
sync_crypto_write(pps, gossip); sync_crypto_write(pps, gossip);

Loading…
Cancel
Save