diff options
author | Daniel Teske <[email protected]> | 2015-07-15 16:36:11 +0200 |
---|---|---|
committer | Daniel Teske <[email protected]> | 2015-07-15 15:30:25 +0000 |
commit | 857bae3146d31db138e6c2a64116f1705661c532 (patch) | |
tree | 038aa9b72c4be269fe7c0eea497e96c6b85c5273 /src/plugins/android/androidrunner.cpp | |
parent | 21d547998f7ec6f06145af89c15d3d85223a35df (diff) |
Android: Mark debug output in red for Android <5
We do that for Android 5 and onwards.
Change-Id: Ia79fbf3cd50ed561e5dba1b8707d296fe1daa82d
Task-number: QTCREATORBUG-14663
Reviewed-by: BogDan Vatra <[email protected]>
Diffstat (limited to 'src/plugins/android/androidrunner.cpp')
-rw-r--r-- | src/plugins/android/androidrunner.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/plugins/android/androidrunner.cpp b/src/plugins/android/androidrunner.cpp index c530d008cfb..7dcd549e63c 100644 --- a/src/plugins/android/androidrunner.cpp +++ b/src/plugins/android/androidrunner.cpp @@ -555,8 +555,7 @@ void AndroidRunner::logcatProcess(const QByteArray &text, QByteArray &buffer, bo if (onlyError || messagetype == QLatin1String("F") || messagetype == QLatin1String("E") - || messagetype == QLatin1String("W") - || messagetype == QLatin1String("D")) + || messagetype == QLatin1String("W")) emit remoteErrorOutput(output); else emit remoteOutput(output); @@ -564,7 +563,6 @@ void AndroidRunner::logcatProcess(const QByteArray &text, QByteArray &buffer, bo } else { if (onlyError || line.startsWith(_("F/")) || line.startsWith(_("E/")) - || line.startsWith(_("D/Qt")) || line.startsWith(_("W/"))) emit remoteErrorOutput(line); else |