Github user kadirozde commented on a diff in the pull request:
https://github.com/apache/phoenix/pull/399#discussion_r229407775
--- Diff:
phoenix-core/src/it/java/org/apache/phoenix/monitoring/PhoenixMetricsIT.java ---
@@ -232,6 +232,7 @@ private boolean verifyMetricsFromSinkOnce(Map<String,
Long> expectedMetrics) {
long actualValue = metric.value().longValue();
if (expectedValue != actualValue) {
LOG.warn("Metric from Hadoop Sink: " +
metric.name() + " didn't match expected.");
+ LOG.warn("Expected: " + expectedValue + "
Actual: " + actualValue);
--- End diff --
I will remove it.
---