fix : add log error message

pull/655/head
pizihao 3 years ago
parent e7e540a44f
commit ba25903156

@ -123,7 +123,7 @@ public abstract class AbstractRefreshListener<M> implements RefreshListener<Hipp
}
String[] ipPort = node.split(COLON);
if (ipPort.length != 2) {
log.error("The IP address format is error");
log.error("The IP address format is error : " + node);
return null;
}
return new IpAndPort(ipPort[0], ipPort[1]);

Loading…
Cancel
Save