Skip to content

Commit 521b5c3

Browse files
authored
Merge pull request kubernetes#80994 from verult/csi-deregistration-loglevel
Bump log level of CSI driver de-registration to match registration handler
2 parents 345e58b + da64ca0 commit 521b5c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/volume/csi/csi_plugin.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ func (h *RegistrationHandler) validateVersions(callerName, pluginName string, en
194194
// DeRegisterPlugin is called when a plugin removed its socket, signaling
195195
// it is no longer available
196196
func (h *RegistrationHandler) DeRegisterPlugin(pluginName string) {
197-
klog.V(4).Info(log("registrationHandler.DeRegisterPlugin request for plugin %s", pluginName))
197+
klog.Info(log("registrationHandler.DeRegisterPlugin request for plugin %s", pluginName))
198198
if err := unregisterDriver(pluginName); err != nil {
199199
klog.Error(log("registrationHandler.DeRegisterPlugin failed: %v", err))
200200
}

0 commit comments

Comments
 (0)