downgrade reflector watchlist fallback log to V(4)

Kubernetes-commit: 3f42ca14011e972ee439a27d47415bc7574f2317
diff --git a/tools/cache/reflector.go b/tools/cache/reflector.go
index 0bc7747..af2c7a2 100644
--- a/tools/cache/reflector.go
+++ b/tools/cache/reflector.go
@@ -426,7 +426,10 @@
 			return nil
 		}
 		if err != nil {
-			logger.Error(err, "The watchlist request ended with an error, falling back to the standard LIST/WATCH semantics because making progress is better than deadlocking")
+			logger.V(4).Info(
+				"Data couldn't be fetched in watchlist mode. Falling back to regular list. This is expected if watchlist is not supported or disabled in kube-apiserver.",
+				"err", err,
+			)
 			fallbackToList = true
 			// ensure that we won't accidentally pass some garbage down the watch.
 			w = nil