aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/android/androiddeployqtstep.cpp
diff options
context:
space:
mode:
authorAlessandro Portale <alessandro.portale@qt.io>2022-07-06 18:02:52 +0200
committerAlessandro Portale <alessandro.portale@qt.io>2022-07-17 11:11:45 +0000
commit8ad4acdd30fabd3bb170f9136455cbd1b2fd0b97 (patch)
tree1b23ee6098b9098f4d793facea0c3ec1703af95c /src/plugins/android/androiddeployqtstep.cpp
parent71ec25895f2e2e8813d4a63e29b92d63aa13cc97 (diff)
Android: Don't quote log lines with path names
Change-Id: I70f23af46bd6c8318971b20727e4010889bdcebc Reviewed-by: Assam Boudjelthia <assam.boudjelthia@qt.io>
Diffstat (limited to 'src/plugins/android/androiddeployqtstep.cpp')
-rw-r--r--src/plugins/android/androiddeployqtstep.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/android/androiddeployqtstep.cpp b/src/plugins/android/androiddeployqtstep.cpp
index e5bde4a30b..bec6836d75 100644
--- a/src/plugins/android/androiddeployqtstep.cpp
+++ b/src/plugins/android/androiddeployqtstep.cpp
@@ -498,7 +498,8 @@ void AndroidDeployQtStep::gatherFilesToPull()
m_filesToPull["/system/" + libDirName + "/libc.so"] = buildDir + "libc.so";
for (auto itr = m_filesToPull.constBegin(); itr != m_filesToPull.constEnd(); ++itr)
- qCDebug(deployStepLog) << "Pulling file from device:" << itr.key() << "to:" << itr.value();
+ qCDebug(deployStepLog).noquote() << "Pulling file from device:" << itr.key()
+ << "to:" << itr.value();
}
void AndroidDeployQtStep::doRun()