debugwriter.h: Use unbuffered cerr instead of clog

This commit is contained in:
Jonas Kulla 2014-11-29 17:55:18 +01:00
parent c1aab96454
commit f00cb60707
1 changed files with 1 additions and 1 deletions

View File

@ -56,7 +56,7 @@ public:
~Debug()
{
std::clog << buf.str() << std::endl;
std::cerr << buf.str() << std::endl;
}
private: