From 15d0a8bec8336f07862a5be566bb5992f87094f9 Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Wed, 30 Nov 2022 06:00:35 +1030 Subject: [PATCH] connectd: don't spam logs when we're under load. This happens a lot with my node with rc2, so drop it to debug. Signed-off-by: Rusty Russell --- connectd/multiplex.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/connectd/multiplex.c b/connectd/multiplex.c index ff315362a..0758513c5 100644 --- a/connectd/multiplex.c +++ b/connectd/multiplex.c @@ -104,8 +104,7 @@ static void close_peer_io_timeout(struct peer *peer) static void close_subd_timeout(struct subd *subd) { - /* BROKEN means we'll trigger CI if we see it, though it's possible */ - status_peer_broken(&subd->peer->id, "Subd did not close, forcing close"); + status_peer_debug(&subd->peer->id, "Subd did not close, forcing close"); io_close(subd->conn); }