]> git.saurik.com Git - wxWidgets.git/commitdiff
added WXTRACE env. variable
authorVáclav Slavík <vslavik@fastmail.fm>
Sun, 20 Jan 2002 11:27:26 +0000 (11:27 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Sun, 20 Jan 2002 11:27:26 +0000 (11:27 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@13671 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/appcmn.cpp

index c3461c2934a2abb6f8f375761eff03bd4fb14f7f..17cb51c088b0814edf8b28ac83cd25889a60a5f2 100644 (file)
@@ -40,6 +40,7 @@
 #include "wx/cmdline.h"
 #include "wx/thread.h"
 #include "wx/confbase.h"
+#include "wx/tokenzr.h"
 
 #if !defined(__WXMSW__) || defined(__WXMICROWIN__)
   #include  <signal.h>      // for SIGTRAP used by wxTrap()
 // initialization and termination
 // ----------------------------------------------------------------------------
 
+#ifdef __WXDEBUG__
+static void LINKAGEMODE SetTraceMasks()
+{
+    wxString mask;
+    if ( wxGetEnv(wxT("WXTRACE"), &mask) )
+    {
+        wxStringTokenizer tkn(mask, wxT(","));
+        while ( tkn.HasMoreTokens() )
+            wxLog::AddTraceMask(tkn.GetNextToken());
+    }
+}
+#endif
+
 wxAppBase::wxAppBase()
 {
     wxTheApp = (wxApp *)this;
@@ -74,6 +88,10 @@ wxAppBase::wxAppBase()
     m_exitOnFrameDelete = TRUE;
     m_isActive = TRUE;
 #endif // wxUSE_GUI
+
+#ifdef __WXDEBUG__
+    SetTraceMasks();
+#endif
 }
 
 wxAppBase::~wxAppBase()