forked from qt-creator/qt-creator
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>
This commit is contained in:
@ -586,7 +586,7 @@ AndroidDeployQtStep::DeployErrorCode AndroidDeployQtStep::parseDeployErrors(
|
||||
|
||||
void AndroidDeployQtStep::reportWarningOrError(const QString &message, Task::TaskType type)
|
||||
{
|
||||
qCDebug(deployStepLog) << message;
|
||||
qCDebug(deployStepLog).noquote() << message;
|
||||
emit addOutput(message, OutputFormat::ErrorMessage);
|
||||
TaskHub::addTask(DeploymentTask(type, message));
|
||||
}
|
||||
|
@ -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);
|
||||
|
Reference in New Issue
Block a user