func()

in pkg/controllers/netconf/network_config_controller.go [102:113]


func (n *NetworkConfigController) printConfig() {
	glog.Infof("**** NetworkConfigController configurations ****")
	for _, cs := range n.configSet {
		if !cs.Enabled {
			continue
		}
		glog.Infof("** FeatureName: %s is enabled **", cs.FeatureName)
		for _, c := range cs.Configs {
			glog.Infof("%v", c)
		}
	}
}