summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2022-01-08 13:40:29 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2022-01-08 13:42:10 +0000
commitd8265a52b850f0bb1e28597117576a85af5c7b7f (patch)
treea7d3c883cccd090a48c85613081f9f7dbe932d48 /lib
parentInitial commit GeoData ray tracer (diff)
downloadilt-d8265a52b850f0bb1e28597117576a85af5c7b7f.tar.bz2
ilt-d8265a52b850f0bb1e28597117576a85af5c7b7f.tar.xz
ilt-d8265a52b850f0bb1e28597117576a85af5c7b7f.zip
Have CLOG write to cerr, clog doesn't sync with Boost test output
Diffstat (limited to 'lib')
-rw-r--r--lib/stream_support.hpp2
1 files changed, 1 insertions, 1 deletions
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";