kube-aggregator: increase log level of AggregationController API group logging

This commit is contained in:
Dr. Stefan Schimanski 2020-02-04 14:14:17 +01:00
parent 1fd2137ff4
commit 059429ce53

View File

@ -102,9 +102,9 @@ func (c *AggregationController) processNextWorkItem() bool {
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)
klog.V(6).Infof("OpenAPI AggregationController: Processing item %s", key)
} else {
klog.Infof("OpenAPI AggregationController: Processing item %s", key)
klog.V(4).Infof("OpenAPI AggregationController: Processing item %s", key)
}
action, err := c.syncHandler(key.(string))