Change DefaultCWMetricsPublisher log level to debug

This commit is contained in:
Steve Zesch 2015-11-12 16:54:06 -05:00
parent c6e393c13e
commit 55e929c331

View file

@ -62,7 +62,7 @@ public class DefaultCWMetricsPublisher implements ICWMetricsPublisher<CWMetricKe
try {
cloudWatchClient.putMetricData(request);
LOG.info(String.format("Successfully published %d datums.", endIndex - startIndex));
LOG.debug(String.format("Successfully published %d datums.", endIndex - startIndex));
} catch (AmazonClientException e) {
LOG.warn(String.format("Could not publish %d datums to CloudWatch", endIndex - startIndex), e);
}