Remove unnecessary log msg.

Signed-off-by: Siyuan Zhang <sizhang@google.com>
This commit is contained in:
Siyuan Zhang 2024-12-02 08:57:51 -08:00
parent 810e9e212e
commit b71763ef38

View File

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