Skip to content

Commit

Permalink
Merge pull request #181 from swisspost/feature/redismonitor_logs
Browse files Browse the repository at this point in the history
Do not log warnings for non-number redis metrics
  • Loading branch information
mcweba authored Apr 19, 2024
2 parents 0617c9a + 11d62bd commit 1240afd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ private void collectMetrics(Buffer buffer) {
publisher.publishMetric(key, value);
}
} catch (NumberFormatException e) {
log.warn("ignore field '{}' because '{}' doesnt look number-ish enough", key, valueStr);
log.trace("ignore field '{}' because '{}' doesnt look number-ish enough", key, valueStr);
}
});
}
Expand Down

0 comments on commit 1240afd

Please sign in to comment.