File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ func (h *healthProbe) checkProbe(w http.ResponseWriter, req *http.Request) {
5050 ctx , cancel := context .WithTimeout (req .Context (), * probeTimeout )
5151 defer cancel ()
5252
53- klog .Infof ("Sending probe request to CSI driver %q" , h .driverName )
53+ klog .V ( 5 ). Infof ("Sending probe request to CSI driver %q" , h .driverName )
5454 ready , err := rpc .Probe (ctx , h .conn )
5555 if err != nil {
5656 w .WriteHeader (http .StatusInternalServerError )
@@ -68,7 +68,7 @@ func (h *healthProbe) checkProbe(w http.ResponseWriter, req *http.Request) {
6868
6969 w .WriteHeader (http .StatusOK )
7070 w .Write ([]byte (`ok` ))
71- klog .Infof ("Health check succeeded" )
71+ klog .V ( 5 ). Infof ("Health check succeeded" )
7272}
7373
7474func main () {
You can’t perform that action at this time.
0 commit comments