# HG changeset patch # User amazy # Date 1562838534 -7200 # Node ID a5e225eac0a9ab29256234c7de2953dd4ba89f5e # Parent 3f1f9039861bc485c58b179c034c7022d7c69b69 logging on windows: all logs actually contained CR.CR.LF -> removed one CR. It seems that iostream already converts \n to \r\n on Windows systems diff -r 3f1f9039861b -r a5e225eac0a9 Core/Logging.cpp --- a/Core/Logging.cpp Wed Jul 10 08:44:10 2019 +0200 +++ b/Core/Logging.cpp Thu Jul 11 11:48:54 2019 +0200 @@ -757,12 +757,7 @@ { if (stream_ != &null_) { -#if defined(_WIN32) - *stream_ << "\r\n"; -#else *stream_ << "\n"; -#endif - stream_->flush(); } }