1
0
mirror of https://github.com/codership/wsrep-lib.git synced 2025-07-28 20:02:00 +03:00

Minor logging cleanups (missing newlines)

This commit is contained in:
Alexey Yurchenko
2021-11-28 23:07:00 +02:00
parent d48122a1fa
commit bef2c93a6d

View File

@ -220,7 +220,7 @@ wsrep::reporter::write_file(double const tstamp)
if (fd < 0)
{
std::cerr << "Reporter could not open temporary file `" << template_
<< "': " << strerror(errno) << " (" << errno << ")";
<< "': " << strerror(errno) << " (" << errno << ")\n";
return;
}
@ -258,7 +258,7 @@ wsrep::reporter::write_file(double const tstamp)
std::cerr << "Could not write " << str.length()
<< " bytes to temporary file '"
<< template_ << "': " << strerror(errno)
<< " (" << errno << ")";
<< " (" << errno << ")\n";
return;
}