From: Johan Malm Date: Wed, 30 Dec 2020 10:59:39 +0000 (+0000) Subject: log: s/warn/info/ on missing config/theme files X-Git-Url: https://git.mdlowis.com/?a=commitdiff_plain;h=375084c40c5881c948fb5f9ee59cbd0e50fab364;p=proto%2Flabwc.git log: s/warn/info/ on missing config/theme files --- diff --git a/src/config/rcxml.c b/src/config/rcxml.c index 1c557e4c..5008b1de 100644 --- a/src/config/rcxml.c +++ b/src/config/rcxml.c @@ -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; } diff --git a/src/theme/theme.c b/src/theme/theme.c index ecbb22a4..2c349465 100644 --- a/src/theme/theme.c +++ b/src/theme/theme.c @@ -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; }