From 80ce49ce424a3f6824e75561459a472f82a03a88 Mon Sep 17 00:00:00 2001 From: Greg Clayton Date: Fri, 9 Nov 2012 22:24:38 +0000 Subject: [PATCH] Remove a debugging printf that was left in the code. git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@167637 91177308-0d34-0410-b5e6-96231b3b80d8 --- source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp b/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp index 2cd468874e..3bae50f608 100644 --- a/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp +++ b/source/Plugins/Process/gdb-remote/ProcessGDBRemote.cpp @@ -845,7 +845,6 @@ ProcessGDBRemote::ConnectToDebugserver (const char *connect_url) for (size_t idx = 0; idx < num_cmds; idx++) { StringExtractorGDBRemote response; - printf ("Sending command: %s.\n", GetExtraStartupCommands().GetArgumentAtIndex(idx)); m_gdb_comm.SendPacketAndWaitForResponse (GetExtraStartupCommands().GetArgumentAtIndex(idx), response, false); } return error;