From 46cffcc059b1f43557aa9755d29e5224cb1de43e Mon Sep 17 00:00:00 2001 From: Ken Gilmer Date: Sun, 5 Sep 2021 22:14:25 -0700 Subject: [PATCH] Lower severity of missing include path specified from error to info. Addresses https://github.com/i3/i3/issues/4494. --- src/config_directives.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/config_directives.c b/src/config_directives.c index c6b839c2c..af3651813 100644 --- a/src/config_directives.c +++ b/src/config_directives.c @@ -29,8 +29,7 @@ CFGFUN(include, const char *pattern) { for (size_t i = 0; i < p.we_wordc; i++) { char resolved_path[PATH_MAX] = {'\0'}; if (realpath(w[i], resolved_path) == NULL) { - ELOG("realpath(%s): %s\n", w[i], strerror(errno)); - result->has_errors = true; + LOG("Skipping %s: %s\n", w[i], strerror(errno)); continue; }