diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2022-01-08 13:40:29 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2022-01-08 13:42:10 +0000 |
commit | d8265a52b850f0bb1e28597117576a85af5c7b7f (patch) | |
tree | a7d3c883cccd090a48c85613081f9f7dbe932d48 /lib/stream_support.hpp | |
parent | Initial commit GeoData ray tracer (diff) | |
download | ilt-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/stream_support.hpp')
-rw-r--r-- | lib/stream_support.hpp | 2 |
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"; |