We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fac3c6a + 9d13f59 commit 180c9fcCopy full SHA for 180c9fc
common/src/main/java/de/bluecolored/bluemap/common/web/http/Server.java
@@ -55,7 +55,7 @@ public void bind(SocketAddress address) throws IOException {
55
this.server.add(server);
56
57
if (checkIfBoundToAllInterfaces(address)) {
58
- Logger.global.logInfo("WebServer bound to all network interfaces on port " + ((InetSocketAddress) address).getPort());
+ Logger.global.logInfo("WebServer bound to all network interfaces on port " + ((InetSocketAddress) server.getLocalAddress()).getPort());
59
} else {
60
Logger.global.logInfo("WebServer bound to: " + server.getLocalAddress());
61
}
0 commit comments