changeset 3469:a5e225eac0a9

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
author amazy
date Thu, 11 Jul 2019 11:48:54 +0200
parents 3f1f9039861b
children 9aaf40d504a2
files Core/Logging.cpp
diffstat 1 files changed, 0 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- 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();
       }
     }