Update go dependencies

This commit is contained in:
Manuel de Brito Fontes 2018-08-25 18:53:28 -03:00
parent 16fce7444f
commit fe616fc9d7
130 changed files with 14029 additions and 3767 deletions

View file

@ -191,7 +191,7 @@ func (f *featureGate) Set(value string) error {
f.known.Store(known)
f.enabled.Store(enabled)
glog.Infof("feature gates: %v", enabled)
glog.V(1).Infof("feature gates: %v", enabled)
return nil
}
@ -227,7 +227,7 @@ func (f *featureGate) SetFromMap(m map[string]bool) error {
f.known.Store(known)
f.enabled.Store(enabled)
glog.Infof("feature gates: %v", f.enabled)
glog.V(1).Infof("feature gates: %v", f.enabled)
return nil
}