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

@ -356,7 +356,7 @@ rcxml_read(const char *filename)
find_config_file(rcxml, sizeof(rcxml), filename); find_config_file(rcxml, sizeof(rcxml), filename);
} }
if (rcxml[0] == '\0') { if (rcxml[0] == '\0') {
warn("cannot find rc.xml config file"); info("cannot find rc.xml config file; using defaults");
goto no_config; goto no_config;
} }

View file

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