Commit 3839636c authored by Satnam Singh's avatar Satnam Singh

Merge pull request #10092 from markturansky/unmount_error_msg

Fixed formatting of unmount error message
parents e5846292 450002a5
......@@ -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 {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment