git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14168 
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
 void wxMenuBar::SelectMenu(size_t pos)
 {
     SetFocus();
-    wxLogDebug("Capturing mouse from wxMenuBar::SelectMenu");
+    wxLogTrace(_T("mousecapture"), _T("Capturing mouse from wxMenuBar::SelectMenu"));
     CaptureMouse();
 
     DoSelectMenu(pos);
         }
         else // on item
         {
-           wxLogDebug("Capturing mouse from wxMenuBar::OnLeftDown");
+               wxLogTrace(_T("mousecapture"), _T("Capturing mouse from wxMenuBar::OnLeftDown"));
             CaptureMouse();
 
             // show it as selected
 {
     if ( GetCapture() )
     {
-        wxLogDebug("Releasing mouse from wxMenuBar::OnDismiss");
+        wxLogTrace(_T("mousecapture"), _T("Releasing mouse from wxMenuBar::OnDismiss"));
         GetCapture()->ReleaseMouse();
     }