epee: flush output after a message

This is equivalent to line buffering, as C++ seems to lack
a setvbuf equivalent which alows line buffering.
This commit is contained in:
moneromooo-monero 2016-04-02 20:59:24 +01:00
parent e7c8a32a28
commit b1aaf20e57
No known key found for this signature in database
GPG key ID: 686F07454D6CEFC3

View file

@ -424,6 +424,7 @@ namespace log_space
}
std::cout << buf;
std::cout << std::flush;
#endif
reset_console_color();
return true;