]> git.mdlowis.com Git - proto/labwc.git/commitdiff
log: s/warn/info/ on missing config/theme files
authorJohan Malm <jgm323@gmail.com>
Wed, 30 Dec 2020 10:59:39 +0000 (10:59 +0000)
committerJohan Malm <jgm323@gmail.com>
Wed, 30 Dec 2020 10:59:39 +0000 (10:59 +0000)
src/config/rcxml.c
src/theme/theme.c

index 1c557e4c9757a03d508e7480f9950b0e5f66a1f1..5008b1dec2fbd51fc074e9dae593f4b4b4e46d1e 100644 (file)
@@ -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;
        }
 
index ecbb22a4e5f7cbaaf213f45b8e91d76c03f3b5f3..2c34946533eca2bd0b94881fd22f45d6d1b68b2e 100644 (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;
        }