From 18c82465b2ff7fa360dba5007d35af740d1a9814 Mon Sep 17 00:00:00 2001 From: Vinnie Falco Date: Mon, 16 May 2016 07:09:27 -0400 Subject: [PATCH] Always flush reporter output stream on log --- extras/beast/unit_test/reporter.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/extras/beast/unit_test/reporter.hpp b/extras/beast/unit_test/reporter.hpp index 13e332b273..2d155946c9 100644 --- a/extras/beast/unit_test/reporter.hpp +++ b/extras/beast/unit_test/reporter.hpp @@ -282,6 +282,7 @@ reporter<_>:: on_log(std::string const& s) { os_ << s; + os_.flush(); } } // detail