From 09459a97c7dfef0a48ed19cb542bd3a1704c267d Mon Sep 17 00:00:00 2001 From: Vincenzo Palazzo Date: Sun, 17 Oct 2021 13:27:20 +0200 Subject: [PATCH] Move log level from warning to info when creating a new ln directory Signed-off-by: Vincenzo Palazzo --- lightningd/options.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lightningd/options.c b/lightningd/options.c index 5a163e59e..b88cc8234 100644 --- a/lightningd/options.c +++ b/lightningd/options.c @@ -1211,7 +1211,7 @@ void handle_early_opts(struct lightningd *ld, int argc, char *argv[]) /*~ Move into config dir: this eases path manipulation and also * gives plugins a good place to store their stuff. */ if (chdir(ld->config_netdir) != 0) { - log_unusual(ld->log, "Creating configuration directory %s", + log_info(ld->log, "Creating configuration directory %s", ld->config_netdir); /* We assume home dir exists, so only create two. */ if (mkdir(ld->config_basedir, 0700) != 0 && errno != EEXIST)