From: Vadim Zeitlin Date: Sat, 21 Apr 2001 01:49:11 +0000 (+0000) Subject: oops... conflict removed X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/9c21efe30131c78c25763446e0754e2a0b54dc30 oops... conflict removed git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9821 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/log.cpp b/src/common/log.cpp index 0f30a9e562..1ec43bfa0a 100644 --- a/src/common/log.cpp +++ b/src/common/log.cpp @@ -112,23 +112,9 @@ static inline bool IsLoggingEnabled() // generic log function void wxLogGeneric(wxLogLevel level, const wxChar *szFormat, ...) { -<<<<<<< log.cpp - if ( wxLog::GetActiveTarget() != NULL ) { - wxCRIT_SECT_LOCKER(locker, gs_csLogBuf); - - va_list argptr; - va_start(argptr, szFormat); - wxVsnprintf(s_szBuf, WXSIZEOF(s_szBuf), szFormat, argptr); - va_end(argptr); -======= if ( IsLoggingEnabled() ) { wxCRIT_SECT_LOCKER(locker, gs_csLogBuf); ->>>>>>> 1.93.2.3 -<<<<<<< log.cpp - wxLog::OnLog(level, s_szBuf, time(NULL)); - } -======= va_list argptr; va_start(argptr, szFormat); wxVsnprintf(s_szBuf, WXSIZEOF(s_szBuf), szFormat, argptr); @@ -136,7 +122,6 @@ void wxLogGeneric(wxLogLevel level, const wxChar *szFormat, ...) wxLog::OnLog(level, s_szBuf, time(NULL)); } ->>>>>>> 1.93.2.3 } #define IMPLEMENT_LOG_FUNCTION(level) \