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:
parent
e7c8a32a28
commit
b1aaf20e57
|
@ -424,6 +424,7 @@ namespace log_space
|
|||
}
|
||||
|
||||
std::cout << buf;
|
||||
std::cout << std::flush;
|
||||
#endif
|
||||
reset_console_color();
|
||||
return true;
|
||||
|
|
Loading…
Reference in New Issue