commit 43f82078cfe5c06169a3fec3915c827193d42cea
parent 7cf25d3b987ff00a644bf5b6910a366f93029bbe
Author: Simon Ser <contact@emersion.fr>
Date: Sun, 17 Jan 2021 18:05:52 +0100
Raise verbosity of error message in load_main_config
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sway/config.c b/sway/config.c
@@ -410,7 +410,7 @@ bool load_main_config(const char *file, bool is_active, bool validating) {
char *real_path = realpath(path, NULL);
if (real_path == NULL) {
- sway_log(SWAY_DEBUG, "%s not found.", path);
+ sway_log(SWAY_ERROR, "%s not found", path);
free(path);
return false;
}