diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2023-03-02 14:46:28 +0100 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2023-03-02 14:46:28 +0100 |
commit | c13cbd20ab97e46eeb39939494d137a2f831b5e1 (patch) | |
tree | 5cd88a82fc9f2368dae374a26e8b78314bda6815 /src/libutil/logging.cc | |
parent | 85dbf9de8e30d07139d983ee4066332c477ee0f9 (diff) |
Logger::writeToStdout(): Use writeFull()
This ensures that write errors do not get ignored.
Diffstat (limited to 'src/libutil/logging.cc')
-rw-r--r-- | src/libutil/logging.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/libutil/logging.cc b/src/libutil/logging.cc index 904ba6ebe..56bdaf87a 100644 --- a/src/libutil/logging.cc +++ b/src/libutil/logging.cc @@ -32,7 +32,8 @@ void Logger::warn(const std::string & msg) void Logger::writeToStdout(std::string_view s) { - std::cout << s << "\n"; + writeFull(STDOUT_FILENO, s); + writeFull(STDOUT_FILENO, "\n"); } class SimpleLogger : public Logger @@ -84,7 +85,7 @@ public: void startActivity(ActivityId act, Verbosity lvl, ActivityType type, const std::string & s, const Fields & fields, ActivityId parent) - override + override { if (lvl <= verbosity && !s.empty()) log(lvl, s + "..."); |