AndroidPlugin: show adb output in error case

Change-Id: I3a9b1e3ca86ab2cfecefd187d9574cf64ef6b1f1
Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
This commit is contained in:
Tim Jenssen
2018-05-31 10:07:41 +02:00
parent af986c40a3
commit 27b153a5e4

View File

@@ -422,7 +422,7 @@ void AndroidRunnerWorker::asyncStartHelper()
runAdb(removeForward); runAdb(removeForward);
if (!runAdb({"forward", port, port})) { if (!runAdb({"forward", port, port})) {
emit remoteProcessFinished(tr("Failed to forward QML debugging ports. Reason: %1.") emit remoteProcessFinished(tr("Failed to forward QML debugging ports. Reason: %1.")
.arg(m_lastRunAdbError)); .arg(m_lastRunAdbError) + "\n" + m_lastRunAdbRawOutput);
return; return;
} }
m_afterFinishAdbCommands.push_back(removeForward.join(' ')); m_afterFinishAdbCommands.push_back(removeForward.join(' '));