mirror of
https://github.com/labwc/labwc.git
synced 2025-11-04 13:30:07 -05:00
log: s/warn/info/ on missing config/theme files
This commit is contained in:
parent
224e8db35c
commit
375084c40c
2 changed files with 2 additions and 2 deletions
|
|
@ -356,7 +356,7 @@ rcxml_read(const char *filename)
|
|||
find_config_file(rcxml, sizeof(rcxml), filename);
|
||||
}
|
||||
if (rcxml[0] == '\0') {
|
||||
warn("cannot find rc.xml config file");
|
||||
info("cannot find rc.xml config file; using defaults");
|
||||
goto no_config;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue