Debugger: Suppress warning on new GDB async messages

We don't support traces yet.

Change-Id: I4ea4db1e52111a2f7b908b925e94f63af9ce3a88
Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
This commit is contained in:
hjk
2015-06-16 16:12:23 +02:00
parent d769efe1e2
commit 6cd5df7587

View File

@@ -606,6 +606,10 @@ void GdbEngine::handleResponse(const QByteArray &buff)
} else if (asyncClass == "memory-changed") {
// New since 2013
// "{thread-group="i1",addr="0x0918a7a8",len="0x10"}"
} else if (asyncClass == "tsv-created") {
// New since 2013-02-06
} else if (asyncClass == "tsv-modified") {
// New since 2013-02-06
} else {
qDebug() << "IGNORED ASYNC OUTPUT"
<< asyncClass << result.toString();