diff options
Diffstat (limited to 'src/libstore')
-rw-r--r-- | src/libstore/ssh.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/ssh.cc b/src/libstore/ssh.cc index 2d2c24afa..87414fe9c 100644 --- a/src/libstore/ssh.cc +++ b/src/libstore/ssh.cc @@ -110,7 +110,7 @@ std::unique_ptr<SSHMaster::Connection> SSHMaster::startCommand(const std::string } catch (EndOfFile & e) { } if (reply != "started") { - printTalkative("SSH stdout first line: %s", reply); + warn("SSH to '%s' failed, stdout first line: '%s'", host, reply); throw Error("failed to start SSH connection to '%s'", host); } } |