diff --git a/src/download-via-ssh/download-via-ssh.cc b/src/download-via-ssh/download-via-ssh.cc index 68fdeb4ca2..86cbb20573 100644 --- a/src/download-via-ssh/download-via-ssh.cc +++ b/src/download-via-ssh/download-via-ssh.cc @@ -109,7 +109,8 @@ void run(Strings args) std::cout << std::endl; - std::pair pipes = connect(settings.sshSubstituterHosts.front()); + string host = settings.sshSubstituterHosts.front(); + std::pair pipes = connect(host); /* Exchange the greeting */ writeInt(SERVE_MAGIC_1, pipes.first); @@ -130,6 +131,7 @@ void run(Strings args) else { Path storePath = *++i; Path destPath = *++i; + printMsg(lvlError, format("downloading `%1%' via SSH from `%2%'...") % storePath % host); substitute(pipes, storePath, destPath); } else