From 8f2c9ce0ed181196f9c6936eda08e84f9e6fa4dd Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Fri, 14 Jul 2023 11:41:33 +0930 Subject: [PATCH] lightningd: if a plugin disables at getmanfest time, use INFO log level. This gets printed by default, so it's not lost! Signed-off-by: Rusty Russell --- lightningd/plugin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lightningd/plugin.c b/lightningd/plugin.c index 6f85def40..3e7aa88fe 100644 --- a/lightningd/plugin.c +++ b/lightningd/plugin.c @@ -1667,7 +1667,7 @@ static void plugin_manifest_cb(const char *buffer, } if (disabled) { - plugin_kill(plugin, LOG_DBG, + plugin_kill(plugin, LOG_INFORM, "disabled itself: %s", disabled); return; }