From 450002a52ec30cbd5b89bffe30283a60f330f69b Mon Sep 17 00:00:00 2001 From: markturansky Date: Fri, 19 Jun 2015 11:21:57 -0400 Subject: [PATCH] Fixed formatting of error message --- pkg/util/mount/mount_linux.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/util/mount/mount_linux.go b/pkg/util/mount/mount_linux.go index c4f2650e4d8..39c76154155 100644 --- a/pkg/util/mount/mount_linux.go +++ b/pkg/util/mount/mount_linux.go @@ -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 {