Github user mjeelanimsft commented on a diff in the pull request:
https://github.com/apache/zookeeper/pull/548#discussion_r203816489
--- Diff:
src/java/main/org/apache/zookeeper/server/quorum/QuorumCnxManager.java ---
@@ -857,15 +869,15 @@ public void run() {
self.recreateSocketAddresses(self.getId());
addr = self.getElectionAddress();
}
- LOG.info("My election bind port: " + addr.toString());
+ LOG.info("My election bind port: " +
formatInetAddr(addr));
setName(addr.toString());
--- End diff --
Good point - I'll remove formatInetAddr(addr) from the log
---