log: s/warn/info/ on missing config/theme files

This commit is contained in:
Johan Malm 2020-12-30 10:59:39 +00:00
parent 224e8db35c
commit 375084c40c
2 changed files with 2 additions and 2 deletions

View file

@ -103,7 +103,7 @@ theme_read(const char *theme_name)
stream = fopen(themerc, "r");
}
if (!stream) {
warn("cannot find theme (%s), using built-in", theme_name);
info("cannot find theme (%s), using built-in", theme_name);
theme_builtin();
return;
}