kube-aggregator: bump openapi aggregation log level

This commit is contained in:
Haowei Cai 2019-03-27 10:20:10 -07:00
parent 094938895a
commit 597929a447

View File

@ -99,7 +99,13 @@ func (c *AggregationController) processNextWorkItem() bool {
return false
}
klog.Infof("OpenAPI AggregationController: Processing item %s", key)
if aggregator.IsLocalAPIService(key.(string)) {
// for local delegation targets that are aggregated once per second, log at
// higher level to avoid flooding the log
klog.V(5).Infof("OpenAPI AggregationController: Processing item %s", key)
} else {
klog.Infof("OpenAPI AggregationController: Processing item %s", key)
}
action, err := c.syncHandler(key.(string))
if err == nil {