From d8265a52b850f0bb1e28597117576a85af5c7b7f Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Sat, 8 Jan 2022 13:40:29 +0000 Subject: Have CLOG write to cerr, clog doesn't sync with Boost test output --- lib/stream_support.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/stream_support.hpp b/lib/stream_support.hpp index 932f7c4..0552b9d 100644 --- a/lib/stream_support.hpp +++ b/lib/stream_support.hpp @@ -64,4 +64,4 @@ streamed_string(const T & v) return ss.str(); } -#define CLOG(x) std::clog << #x " : " << x << "\n"; +#define CLOG(x) std::cerr << #x " : " << x << "\n"; -- cgit v1.2.3