summaryrefslogtreecommitdiff
path: root/src/plugins/android/androiddeviceinfo.cpp
diff options
context:
space:
mode:
authorAlessandro Portale <alessandro.portale@qt.io>2022-06-21 15:13:13 +0200
committerAlessandro Portale <alessandro.portale@qt.io>2022-06-27 19:31:19 +0000
commit139e190d77647c8fe0d588f0ccd8ee097dc530a7 (patch)
treedd8e519233aea5807676a15d89ff183bc72cb20d /src/plugins/android/androiddeviceinfo.cpp
parent22b8f3bdcd00de9cdee6a5fcc4da12b5d1293a47 (diff)
downloadqt-creator-139e190d77647c8fe0d588f0ccd8ee097dc530a7.tar.gz
Android: Cleanup qtc.android.build.androiddeployqtstep logging
Reduce excess spacing and quoting. Change-Id: I685d78a91494f5805a175552db36df92d3da3ca5 Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: Assam Boudjelthia <assam.boudjelthia@qt.io>
Diffstat (limited to 'src/plugins/android/androiddeviceinfo.cpp')
-rw-r--r--src/plugins/android/androiddeviceinfo.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/android/androiddeviceinfo.cpp b/src/plugins/android/androiddeviceinfo.cpp
index 30ac8c2f0f..fb2223c067 100644
--- a/src/plugins/android/androiddeviceinfo.cpp
+++ b/src/plugins/android/androiddeviceinfo.cpp
@@ -61,7 +61,8 @@ bool AndroidDeviceInfo::operator==(const AndroidDeviceInfo &other) const
QDebug &operator<<(QDebug &stream, const AndroidDeviceInfo &device)
{
- stream << "Type:" << (device.type == ProjectExplorer::IDevice::Emulator ? "Emulator" : "Device")
+ stream.nospace()
+ << "Type:" << (device.type == ProjectExplorer::IDevice::Emulator ? "Emulator" : "Device")
<< ", ABI:" << device.cpuAbi << ", Serial:" << device.serialNumber
<< ", Name:" << device.avdName << ", API:" << device.sdk
<< ", Authorised:" << (device.state == IDevice::DeviceReadyToUse);