Fixed formatting of error message

This commit is contained in:
markturansky
2015-06-19 11:21:57 -04:00
parent e584629272
commit 450002a52e

View File

@@ -126,7 +126,7 @@ func makeMountArgs(source, target, fstype string, options []string) []string {
// Unmount unmounts the target.
func (mounter *Mounter) Unmount(target string) error {
glog.V(5).Infof("Unmounting %s %v")
glog.V(5).Infof("Unmounting %s", target)
command := exec.Command("umount", target)
output, err := command.CombinedOutput()
if err != nil {