diff --git a/cmd/kubelet/app/server_linux.go b/cmd/kubelet/app/server_linux.go index 9279f97135e..473c39a33f7 100644 --- a/cmd/kubelet/app/server_linux.go +++ b/cmd/kubelet/app/server_linux.go @@ -37,7 +37,7 @@ func watchForLockfileContention(path string, done chan struct{}) error { go func() { select { case ev := <-watcher.Event: - klog.InfoS("inotify event", "event", ev) + klog.InfoS("Inotify event", "event", ev) case err = <-watcher.Error: klog.ErrorS(err, "inotify watcher error") } diff --git a/pkg/volume/local/local.go b/pkg/volume/local/local.go index d6a5ec85cb1..df9b7f560f9 100644 --- a/pkg/volume/local/local.go +++ b/pkg/volume/local/local.go @@ -412,7 +412,7 @@ func (plugin *localVolumePlugin) NodeExpand(resizeOptions volume.NodeResizeOptio case hostutil.FileTypeDirectory: // if the given local volume path is of already filesystem directory, return directly because // we do not want to prevent mount operation from succeeding. - klog.InfoS("expansion of directory based local volumes is NO-OP", "local-volume-path", localDevicePath) + klog.InfoS("Expansion of directory based local volumes is NO-OP", "local-volume-path", localDevicePath) return true, nil default: return false, fmt.Errorf("only directory and block device are supported")