Debugger: Remove 'Lldb stdout:' qualification in debugger log

That was an early aid to get LLDB up and running.

Change-Id: Iac95806cee561a40cd90039f534739a2663e395f
Reviewed-by: hjk <hjk@theqtcompany.com>
This commit is contained in:
hjk
2015-03-04 15:29:03 +01:00
parent 46d515529a
commit d5f9f78172

View File

@@ -964,7 +964,7 @@ void LldbEngine::readLldbStandardError()
void LldbEngine::readLldbStandardOutput() void LldbEngine::readLldbStandardOutput()
{ {
QByteArray out = m_lldbProc.readAllStandardOutput(); QByteArray out = m_lldbProc.readAllStandardOutput();
showMessage(_("Lldb stdout: " + out)); showMessage(_(out));
m_inbuffer.append(out); m_inbuffer.append(out);
while (true) { while (true) {
int pos = m_inbuffer.indexOf("@\n"); int pos = m_inbuffer.indexOf("@\n");