From 19781ecad53c37adc99c4f9b3044b2fb956071c5 Mon Sep 17 00:00:00 2001 From: madmaxoft Date: Sat, 10 Aug 2013 13:03:05 +0200 Subject: Coloring is reset before the LF. --- source/Log.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source/Log.cpp') diff --git a/source/Log.cpp b/source/Log.cpp index 5f78bba1b..2b505de5d 100644 --- a/source/Log.cpp +++ b/source/Log.cpp @@ -117,13 +117,13 @@ void cLog::Log(const char * a_Format, va_list argList) AString Line; #ifdef _DEBUG - Printf(Line, "[%04x|%02d:%02d:%02d] %s\n", cIsThread::GetCurrentID(), timeinfo->tm_hour, timeinfo->tm_min, timeinfo->tm_sec, Message.c_str()); + Printf(Line, "[%04x|%02d:%02d:%02d] %s", cIsThread::GetCurrentID(), timeinfo->tm_hour, timeinfo->tm_min, timeinfo->tm_sec, Message.c_str()); #else - Printf(Line, "[%02d:%02d:%02d] %s\n", timeinfo->tm_hour, timeinfo->tm_min, timeinfo->tm_sec, Message.c_str()); + Printf(Line, "[%02d:%02d:%02d] %s", timeinfo->tm_hour, timeinfo->tm_min, timeinfo->tm_sec, Message.c_str()); #endif if (m_File) { - fputs(Line.c_str(), m_File); + fprintf(m_File, "%s\n", Line.c_str(), m_File); fflush(m_File); } -- cgit v1.2.3