diff options
author | Rainer Keller <Rainer.Keller@qt.io> | 2019-02-18 11:23:17 +0100 |
---|---|---|
committer | Rainer Keller <Rainer.Keller@qt.io> | 2019-02-18 12:12:26 +0000 |
commit | f361f78784721ff7e56c03d76b0ccd9dbda5153d (patch) | |
tree | dcef1c19ea496edc263004ca0b65117954d83bfe /src/plugins/remotelinux | |
parent | 5c951c837f46be1c1f93be2530c6b9f64ccc30fa (diff) | |
download | qt-creator-f361f78784721ff7e56c03d76b0ccd9dbda5153d.tar.gz |
RemoteLinux: Add details to status message
This helps to investigate if the wrong device or IP was configured in
the settings.
Change-Id: I4fca0b01d67f13c3133a169e50b33efaf794f6d8
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'src/plugins/remotelinux')
-rw-r--r-- | src/plugins/remotelinux/abstractremotelinuxdeployservice.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/plugins/remotelinux/abstractremotelinuxdeployservice.cpp b/src/plugins/remotelinux/abstractremotelinuxdeployservice.cpp index 12e47ca0d2..8877af9045 100644 --- a/src/plugins/remotelinux/abstractremotelinuxdeployservice.cpp +++ b/src/plugins/remotelinux/abstractremotelinuxdeployservice.cpp @@ -203,7 +203,9 @@ void AbstractRemoteLinuxDeployService::handleDeviceSetupDone(bool success) } else { connect(d->connection, &SshConnection::connected, this, &AbstractRemoteLinuxDeployService::handleConnected); - emit progressMessage(tr("Connecting to device...")); + emit progressMessage(tr("Connecting to device '%1' (%2)") + .arg(deviceConfiguration()->displayName()) + .arg(deviceConfiguration()->sshParameters().host())); if (d->connection->state() == SshConnection::Unconnected) d->connection->connectToHost(); } |