From 77ae8023059644509bad01e8a4cbf206221035f7 Mon Sep 17 00:00:00 2001 From: =?utf8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Fri, 12 Jan 2001 20:30:53 +0000 Subject: [PATCH] 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 --- src/common/log.cpp | 6 ------ 1 file changed, 6 deletions(-) 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() -- 2.45.2