forked from qt-creator/qt-creator
Android M: Support new logcat output
Change-Id: I64ae6493b45b3f1cac82e7f5e1ae77ec3b910bc9 Task-number: QTCREATORBUG-14534 Reviewed-by: BogDan Vatra <bogdan@kde.org> Reviewed-by: Daniel Teske <daniel.teske@theqtcompany.com>
This commit is contained in:
@@ -105,15 +105,13 @@ AndroidAnalyzeSupport::AndroidAnalyzeSupport(AndroidRunConfiguration *runConfig,
|
||||
});
|
||||
|
||||
connect(runner, &AndroidRunner::remoteErrorOutput,
|
||||
[this, runControl](const QByteArray &output) {
|
||||
const QString msg = QString::fromUtf8(output);
|
||||
[this, runControl](const QString &msg) {
|
||||
runControl->logApplicationMessage(msg, Utils::StdErrFormatSameLine);
|
||||
m_outputParser.processOutput(msg);
|
||||
});
|
||||
|
||||
connect(runner, &AndroidRunner::remoteOutput,
|
||||
[this, runControl](const QByteArray &output) {
|
||||
const QString msg = QString::fromUtf8(output);
|
||||
[this, runControl](const QString &msg) {
|
||||
runControl->logApplicationMessage(msg, Utils::StdOutFormatSameLine);
|
||||
m_outputParser.processOutput(msg);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user