]> git.saurik.com Git - wxWidgets.git/commitdiff
trace messages are now turned off by default
authorVadim Zeitlin <vadim@wxwidgets.org>
Wed, 8 Jul 1998 22:17:50 +0000 (22:17 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Wed, 8 Jul 1998 22:17:50 +0000 (22:17 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@197 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/log.cpp

index dd32729b419b90546f4528f30e6502f257191206..0b9f5eb8c3ef2a53cf78bd4a1e3996afdb669ad2 100644 (file)
@@ -210,7 +210,7 @@ wxLog::wxLog()
   m_bHasMessages = FALSE;
   m_bVerbose     = FALSE;
   m_szTimeFormat = "[%d/%b/%y %H:%M:%S] ";
-  m_ulTraceMask  = (wxTraceMask)-1;        // set all bits
+  m_ulTraceMask  = (wxTraceMask)0;        // -1 to set all bits
 }
 
 wxLog *wxLog::GetActiveTarget()