fix: wording for ssh connection details debug

This commit is contained in:
decentral1se 2022-02-07 00:40:44 +01:00
parent 481891b077
commit 14e7115c5e
Signed by: decentral1se
GPG Key ID: 03789458B3D0C410

View File

@ -954,7 +954,7 @@ func scpPublish(c *cli.Context, root, pubTarget string) error {
logrus.Debugf("no ssh key discovered for %s", server)
}
logrus.Debugf("connecting with user: %s, port: %s to connect to %s", sshUser, sshPort, server)
logrus.Debugf("connecting to %s with user: %s, port: %s", server, sshUser, sshPort)
serverAndPort := fmt.Sprintf("%s:%s", server, sshPort)
scpClient, err := scp.NewClient(serverAndPort, sshConf, &scp.ClientOption{})