Decrease logging level for no metric data exported (#4405)

This commit is contained in:
Lauri Tulmin 2022-04-21 17:53:55 +03:00 committed by GitHub
parent f464817013
commit 8f7124495f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ public final class PeriodicMetricReader implements MetricReader {
try {
Collection<MetricData> metricData = metricProducer.collectAllMetrics();
if (metricData.isEmpty()) {
logger.log(Level.FINE, "No metric data to export - skipping export.");
logger.log(Level.FINEST, "No metric data to export - skipping export.");
flushResult.succeed();
exportAvailable.set(true);
} else {