]> git.saurik.com Git - wxWidgets.git/commitdiff
wxExecute log message cleanup
authorRyan Norton <wxprojects@comcast.net>
Mon, 18 Apr 2005 21:25:10 +0000 (21:25 +0000)
committerRyan Norton <wxprojects@comcast.net>
Mon, 18 Apr 2005 21:25:10 +0000 (21:25 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@33734 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/mac/corefoundation/utilsexc_cf.cpp
src/unix/utilsunx.cpp

index 77c5ddbcc61cb298ccb5cafcd6ff1a42d13f4899..afd52277301a4bc1e76cfb4dba01bd2b0e1d7c9f 100644 (file)
@@ -28,7 +28,7 @@ extern "C" {
 void wxMAC_MachPortEndProcessDetect(CFMachPortRef port, void *data)
 {
     wxEndProcessData *proc_data = (wxEndProcessData*)data;
-    wxLogDebug(wxT("Wow.. this actually worked!"));
+    wxLogDebug(wxT("Process ended"));
     int status = 0;
     int rc = waitpid(abs(proc_data->pid), &status, WNOHANG);
     if(!rc)
index 0a9c8e538da5c5358c6846c0848f055b63d86beb..8336c2d68b11f7e815c6bb404d6e301c7bc2bc33 100644 (file)
@@ -240,6 +240,7 @@ int wxKill(long pid, wxSignal sig, wxKillError *rc, int flags)
 long wxExecute( const wxString& command, int flags, wxProcess *process )
 {
     wxCHECK_MSG( !command.empty(), 0, wxT("can't exec empty command") );
+    wxLogDebug(wxString(wxT("Launching: ")) + command);
 
 #if wxUSE_THREADS
     // fork() doesn't mix well with POSIX threads: on many systems the program