forked from qt-creator/qt-creator
RemoteLinux: Use qCDebug instead of qCWarning
Change-Id: I9fe9707d9d3cc00f87689ab5695450bcbd83aa33 Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
@@ -900,7 +900,7 @@ public:
|
||||
});
|
||||
Result result = m_shell->start();
|
||||
if (!result) {
|
||||
qCWarning(linuxDeviceLog) << "Failed to start shell for:" << parameters.userAtHostAndPort()
|
||||
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();
|
||||
|
Reference in New Issue
Block a user