diff --git a/cmd/csi-external-health-monitor-controller/main.go b/cmd/csi-external-health-monitor-controller/main.go index 54e91d81..15b73045 100644 --- a/cmd/csi-external-health-monitor-controller/main.go +++ b/cmd/csi-external-health-monitor-controller/main.go @@ -180,7 +180,7 @@ func main() { klog.FlushAndExit(klog.ExitFlushTimeout, 1) } if !supportsService { - logger.V(2).Info("CSI driver does not support Plugin Controller Service, exiting") + logger.Info("CSI driver does not support Plugin Controller Service, exiting") klog.FlushAndExit(klog.ExitFlushTimeout, 1) } @@ -203,7 +203,7 @@ func main() { } if (!supportControllerListVolumes && !supportControllerGetVolume) || !supportControllerVolumeCondition { - logger.V(2).Info("CSI driver does not support Controller ListVolumes and GetVolume service or does not implement VolumeCondition, exiting") + logger.Info("CSI driver does not support Controller ListVolumes and GetVolume service or does not implement VolumeCondition, exiting") klog.FlushAndExit(klog.ExitFlushTimeout, 1) }