aboutsummaryrefslogtreecommitdiffstats
path: root/sway/config.c
diff options
context:
space:
mode:
authorLibravatar Simon Ser <contact@emersion.fr>2021-01-17 18:05:52 +0100
committerLibravatar Simon Ser <contact@emersion.fr>2021-01-17 18:07:13 +0100
commit43f82078cfe5c06169a3fec3915c827193d42cea (patch)
treecc7475d66a4eda77a02d9308e8bd73e0c2366419 /sway/config.c
parentChanged fprintf(stdout,...) to printf(...) for more readable code (diff)
downloadsway-43f82078cfe5c06169a3fec3915c827193d42cea.tar.gz
sway-43f82078cfe5c06169a3fec3915c827193d42cea.tar.zst
sway-43f82078cfe5c06169a3fec3915c827193d42cea.zip
Raise verbosity of error message in load_main_config
Diffstat (limited to 'sway/config.c')
-rw-r--r--sway/config.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sway/config.c b/sway/config.c
index 71382b86..077a5b4a 100644
--- a/sway/config.c
+++ b/sway/config.c
@@ -410,7 +410,7 @@ bool load_main_config(const char *file, bool is_active, bool validating) {
410 410
411 char *real_path = realpath(path, NULL); 411 char *real_path = realpath(path, NULL);
412 if (real_path == NULL) { 412 if (real_path == NULL) {
413 sway_log(SWAY_DEBUG, "%s not found.", path); 413 sway_log(SWAY_ERROR, "%s not found", path);
414 free(path); 414 free(path);
415 return false; 415 return false;
416 } 416 }