Change DefaultCWMetricsPublisher log level to debug
This commit is contained in:
parent
c6e393c13e
commit
55e929c331
1 changed files with 1 additions and 1 deletions
|
|
@ -62,7 +62,7 @@ public class DefaultCWMetricsPublisher implements ICWMetricsPublisher<CWMetricKe
|
||||||
try {
|
try {
|
||||||
cloudWatchClient.putMetricData(request);
|
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) {
|
} catch (AmazonClientException e) {
|
||||||
LOG.warn(String.format("Could not publish %d datums to CloudWatch", endIndex - startIndex), e);
|
LOG.warn(String.format("Could not publish %d datums to CloudWatch", endIndex - startIndex), e);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue