Merge pull request #129057 from siyuanfoundation/simple

Remove unnecessary log msg.
This commit is contained in:
Kubernetes Prow Robot 2024-12-12 05:29:40 +00:00 committed by GitHub
commit 349fa8aced
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -268,7 +268,6 @@ func NewVersionedFeatureGate(emulationVersion *version.Version) *featureGate {
f.enabledRaw.Store(map[string]bool{})
f.emulationVersion.Store(emulationVersion)
f.queriedFeatures.Store(sets.Set[Feature]{})
klog.V(1).Infof("new feature gate with emulationVersion=%s", f.emulationVersion.Load().String())
return f
}