From 1a74d8284c2dcaeb0459dd54e2107044479bcdd5 Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Mon, 28 Jun 2021 13:52:03 +0930 Subject: [PATCH] common: log at debug level when we update billboard. Makes for easier postmortem. Signed-off-by: Rusty Russell --- common/peer_billboard.c | 1 + 1 file changed, 1 insertion(+) diff --git a/common/peer_billboard.c b/common/peer_billboard.c index 183b9191c..7ed816eb2 100644 --- a/common/peer_billboard.c +++ b/common/peer_billboard.c @@ -12,6 +12,7 @@ void peer_billboard(bool perm, const char *fmt, ...) str = tal_vfmt(NULL, fmt, ap); va_end(ap); + status_debug("billboard%s: %s", perm ? " perm" : "", str); status_send(take(towire_status_peer_billboard(NULL, perm, str))); tal_free(str); }