Index: lldb/trunk/source/Commands/CommandObjectProcess.cpp =================================================================== --- lldb/trunk/source/Commands/CommandObjectProcess.cpp +++ lldb/trunk/source/Commands/CommandObjectProcess.cpp @@ -268,7 +268,8 @@ ProcessSP process_sp (target->GetProcessSP()); if (process_sp) { - if (stream.GetData()) + const char *data = stream.GetData(); + if (data && strlen(data) > 0) result.AppendMessage(stream.GetData()); result.AppendMessageWithFormat ("Process %" PRIu64 " launched: '%s' (%s)\n", process_sp->GetID(), exe_module_sp->GetFileSpec().GetPath().c_str(), archname); result.SetStatus (eReturnStatusSuccessFinishResult); Index: lldb/trunk/source/Target/Process.cpp =================================================================== --- lldb/trunk/source/Target/Process.cpp +++ lldb/trunk/source/Target/Process.cpp @@ -1044,7 +1044,6 @@ { case eStateInvalid: case eStateUnloaded: - case eStateConnected: case eStateAttaching: case eStateLaunching: case eStateStepping: @@ -1060,6 +1059,7 @@ } break; + case eStateConnected: case eStateRunning: // Don't be chatty when we run... break;