RemoteLinux: Use qCDebug instead of qCWarning

Change-Id: I9fe9707d9d3cc00f87689ab5695450bcbd83aa33
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
hjk
2024-12-12 13:07:34 +01:00
parent cb1b71b026
commit 59635ee0e8

View File

@@ -900,8 +900,8 @@ public:
});
Result result = m_shell->start();
if (!result) {
qCWarning(linuxDeviceLog) << "Failed to start shell for:" << parameters.userAtHostAndPort()
<< ", " << result.error();
qCDebug(linuxDeviceLog) << "Failed to start shell for:" << parameters.userAtHostAndPort()
<< ", " << result.error();
}
return result;
}
@@ -1038,7 +1038,7 @@ LinuxDevice::LinuxDevice()
QObject::connect(proc, &Process::done, proc, [proc](){
if (proc->exitCode() != 0){
qCWarning(linuxDeviceLog) << proc->exitMessage();
qCDebug(linuxDeviceLog) << proc->exitMessage();
Core::MessageManager::writeFlashing(proc->exitMessage());
}
proc->deleteLater();