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
This commit is contained in:
Václav Slavík
2001-01-12 20:30:53 +00:00
parent 7981795a89
commit 77ae802305

View File

@@ -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()