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); }