Skip to content
This repository has been archived by the owner on Oct 19, 2022. It is now read-only.

Commit

Permalink
improve message
Browse files Browse the repository at this point in the history
Signed-off-by: Victor Vieux <victorvieux@gmail.com>
  • Loading branch information
vieux committed May 2, 2018
1 parent e3916d9 commit bab61a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -252,9 +252,9 @@ func (d *sshfsDriver) mountVolume(v *sshfsVolume) error {
}

logrus.Debug(cmd.Args)
output,err := cmd.CombinedOutput()
output, err := cmd.CombinedOutput()
if err != nil {
return logError("sshfs command execute failed: %s ( %s )", err, string(output))
return logError("sshfs command execute failed: %v (%s)", err, output)
}
return nil
}
Expand Down

0 comments on commit bab61a0

Please sign in to comment.