From dfd41385b1e7b545e2594affa4e964983884ff78 Mon Sep 17 00:00:00 2001 From: ipslot Date: Tue, 12 May 2015 13:27:02 +0600 Subject: [PATCH] Update Log.cpp set default log to std::cerr stream --- Log.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Log.cpp b/Log.cpp index 2507258e..0a561e0c 100644 --- a/Log.cpp +++ b/Log.cpp @@ -13,7 +13,7 @@ static const char * g_LogLevelStr[eNumLogLevels] = void LogMsg::Process() { - auto& output = (log && log->GetLogStream ()) ? *log->GetLogStream () : std::cout; + auto& output = (log && log->GetLogStream ()) ? *log->GetLogStream () : std::cerr; if (log) output << log->GetTimestamp (); else