From 94b4dfbc52c7f31c41f4202c4ab7ddb560fc0812 Mon Sep 17 00:00:00 2001 From: xieliang Date: Tue, 13 Dec 2016 12:03:21 +0800 Subject: [PATCH] cleanup System.out --- .../client/routing/ConsistentHashRoutingService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/distributedlog-client/src/main/java/com/twitter/distributedlog/client/routing/ConsistentHashRoutingService.java b/distributedlog-client/src/main/java/com/twitter/distributedlog/client/routing/ConsistentHashRoutingService.java index 8abd299a5..570c8bfb6 100644 --- a/distributedlog-client/src/main/java/com/twitter/distributedlog/client/routing/ConsistentHashRoutingService.java +++ b/distributedlog-client/src/main/java/com/twitter/distributedlog/client/routing/ConsistentHashRoutingService.java @@ -220,7 +220,7 @@ private synchronized Pair get(long hash) { synchronized void dumpHashRing() { for (Map.Entry entry : circle.entrySet()) { - System.out.println(entry.getKey() + " : " + entry.getValue()); + logger.info(entry.getKey() + " : " + entry.getValue()); } }