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

Commit bab61a0

Browse files
committed
improve message
Signed-off-by: Victor Vieux <victorvieux@gmail.com>
1 parent e3916d9 commit bab61a0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -252,9 +252,9 @@ func (d *sshfsDriver) mountVolume(v *sshfsVolume) error {
252252
}
253253

254254
logrus.Debug(cmd.Args)
255-
output,err := cmd.CombinedOutput()
255+
output, err := cmd.CombinedOutput()
256256
if err != nil {
257-
return logError("sshfs command execute failed: %s ( %s )", err, string(output))
257+
return logError("sshfs command execute failed: %v (%s)", err, output)
258258
}
259259
return nil
260260
}

0 commit comments

Comments
 (0)