Merge pull request #87813 from sttts/sttts-schema-aggregation-logging

kube-aggregator: increase log level of AggregationController API group logging
This commit is contained in:
Kubernetes Prow Robot 2020-02-06 17:47:01 -08:00 committed by GitHub
commit 8d80a44177
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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))