2) Last active log target is now deleted in wxApp::CleanUp()
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@47 
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
   if (wxWinHandleList)
     delete wxWinHandleList ;
     
   if (wxWinHandleList)
     delete wxWinHandleList ;
     
+  // do it as the very last thing because everything else can log messages
+  delete wxLog::SetActiveTarget(NULL);
 }
 
 void wxApp::CommonInit(void)
 }
 
 void wxApp::CommonInit(void)
   // 'Garbage' collection of windows deleted with Close().
   DeletePendingObjects();
 
   // 'Garbage' collection of windows deleted with Close().
   DeletePendingObjects();
 
+  // flush the logged messages if any
+  wxLog *pLog = wxLog::GetActiveTarget();
+  if ( pLog != NULL && pLog->HasPendingMessages() )
+    pLog->Flush();
+
   // Send OnIdle events to all windows
   bool needMore = SendIdleEvents();
 
   // Send OnIdle events to all windows
   bool needMore = SendIdleEvents();