We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d15c921 commit a7d0f42Copy full SHA for a7d0f42
com.creditease.uav.base/src/main/java/com/creditease/agent/SystemStarter.java
@@ -203,7 +203,9 @@ private void checkNetworkReady() {
203
204
for (InetAddress addr : NetworkHelper.getAllIP()) {
205
206
- ipmsg.append("\n").append(index++).append(" ----- ").append(addr.getHostAddress());
+ String ip = addr.getHostAddress();
207
+
208
+ ipmsg.append("\n").append(index++).append(" ----- ").append(NetworkHelper.getNetCardName(ip)).append(" ----- ").append(ip);
209
}
210
211
log.info(this, ipmsg.toString());
0 commit comments