Merge pull request #80994 from verult/csi-deregistration-loglevel

Bump log level of CSI driver de-registration to match registration handler
This commit is contained in:
Kubernetes Prow Robot 2019-08-06 06:06:09 -07:00 committed by GitHub
commit 521b5c3fed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -194,7 +194,7 @@ func (h *RegistrationHandler) validateVersions(callerName, pluginName string, en
// DeRegisterPlugin is called when a plugin removed its socket, signaling
// it is no longer available
func (h *RegistrationHandler) DeRegisterPlugin(pluginName string) {
klog.V(4).Info(log("registrationHandler.DeRegisterPlugin request for plugin %s", pluginName))
klog.Info(log("registrationHandler.DeRegisterPlugin request for plugin %s", pluginName))
if err := unregisterDriver(pluginName); err != nil {
klog.Error(log("registrationHandler.DeRegisterPlugin failed: %v", err))
}