Fix the wrong log

This commit is contained in:
houjun 2021-11-15 22:51:43 +08:00
parent 1e6f3b5cd6
commit 7458399f77

View File

@ -98,7 +98,7 @@ func changeFilePermission(filename string, fsGroup *int64, readonly bool, info o
err = os.Chmod(filename, info.Mode()|mask)
if err != nil {
klog.ErrorS(err, "Chown failed", "path", filename)
klog.ErrorS(err, "chmod failed", "path", filename)
}
return nil