CDB: Print non extension output when verbose log is enabled.

Change-Id: I0fb308794220d08be43b81ed2d56fd558411e650
Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
This commit is contained in:
David Schulz
2015-06-23 12:43:21 +02:00
parent 83957912fe
commit e670d9f341

View File

@@ -2499,6 +2499,8 @@ void CdbEngine::parseOutputLine(QByteArray line)
currentCommand->response.command.constData(), currentCommand->token, currentCommand->response.command.constData(), currentCommand->token,
currentCommand->response.builtinReply.size(), m_builtinCommandQueue.size() - 1); currentCommand->response.builtinReply.size(), m_builtinCommandQueue.size() - 1);
QTC_ASSERT(token == currentCommand->token, return; ); QTC_ASSERT(token == currentCommand->token, return; );
if (boolSetting(VerboseLog))
showMessage(QLatin1String(currentCommand->response.builtinReply.join(' ')), LogMisc);
if (currentCommand->handler) { if (currentCommand->handler) {
currentCommand->handler(currentCommand->response); currentCommand->handler(currentCommand->response);
} }