From: Václav Slavík Date: Fri, 12 Jan 2001 20:30:53 +0000 (+0000) Subject: verbose mode wxLog disabled by default even in debug mode X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/77ae8023059644509bad01e8a4cbf206221035f7 verbose mode wxLog disabled by default even in debug mode git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9084 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/log.cpp b/src/common/log.cpp index 18428e6d0c..6e102e6753 100644 --- a/src/common/log.cpp +++ b/src/common/log.cpp @@ -274,13 +274,7 @@ void WXDLLEXPORT wxLogSysError(long lErrCode, const wxChar *szFormat, ...) wxLog::wxLog() { m_bHasMessages = FALSE; - - // enable verbose messages by default in the debug builds -#ifdef __WXDEBUG__ - m_bVerbose = TRUE; -#else // release m_bVerbose = FALSE; -#endif // debug/release } wxLog *wxLog::GetActiveTarget()