Skip to content

Commit 84ce538

Browse files
Move log level from warning to info when creating a new ln directory
Signed-off-by: Vincenzo Palazzo <[email protected]>
1 parent c012a71 commit 84ce538

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lightningd/options.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1211,7 +1211,7 @@ void handle_early_opts(struct lightningd *ld, int argc, char *argv[])
12111211
/*~ Move into config dir: this eases path manipulation and also
12121212
* gives plugins a good place to store their stuff. */
12131213
if (chdir(ld->config_netdir) != 0) {
1214-
log_unusual(ld->log, "Creating configuration directory %s",
1214+
log_info(ld->log, "Creating configuration directory %s",
12151215
ld->config_netdir);
12161216
/* We assume home dir exists, so only create two. */
12171217
if (mkdir(ld->config_basedir, 0700) != 0 && errno != EEXIST)

0 commit comments

Comments
 (0)