diff options
author | Freeyorp <TheFreeYorp+git@gmail.com> | 2024-06-19 08:29:16 +0000 |
---|---|---|
committer | Freeyorp <TheFreeYorp+git@gmail.com> | 2024-06-19 13:00:17 +0000 |
commit | 25189ac0fc804898eeb30c27be271f9b598567d9 (patch) | |
tree | 37a3b1a13c641664235c518c59f46b36a38267f2 | |
parent | cc5d5d93a1019e1bfd3b327b896368a6dfd544d8 (diff) | |
download | tmwa-25189ac0fc804898eeb30c27be271f9b598567d9.tar.gz tmwa-25189ac0fc804898eeb30c27be271f9b598567d9.tar.bz2 tmwa-25189ac0fc804898eeb30c27be271f9b598567d9.tar.xz tmwa-25189ac0fc804898eeb30c27be271f9b598567d9.zip |
shared: Explain why startup failed on conf fail
This prints out the filename and what it tried to do, rather than raising
SIGABRT and silently dumping a core.
-rw-r--r-- | src/shared/lib.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/shared/lib.cpp b/src/shared/lib.cpp index 563bff4..7c25546 100644 --- a/src/shared/lib.cpp +++ b/src/shared/lib.cpp @@ -39,10 +39,16 @@ namespace tmwa { io::ReadFile rf(dirfd, filename); if (!rf.is_open()) + { + FPRINTF(stderr, "Could not open %s\n"_fmt, filename); abort(); + } AString line; if (!rf.getline(line)) + { + FPRINTF(stderr, "Could not read from %s\n"_fmt, filename); abort(); + } } static @@ -50,10 +56,16 @@ namespace tmwa { io::WriteFile wf(dirfd, filename); if (!wf.is_open()) + { + FPRINTF(stderr, "Could not open %s\n"_fmt, filename); abort(); + } wf.put_line("Hello, World!"_s); if (!wf.close()) + { + FPRINTF(stderr, "Could not write to %s\n"_fmt, filename); abort(); + } } void check_paths() |