Skip to content

Commit

Permalink
adjust for startup log parity
Browse files Browse the repository at this point in the history
  • Loading branch information
tylerstraub committed May 31, 2024
1 parent 90c78e9 commit f993fb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/ch/bildspur/artnet/ArtNetServer.java
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ public void start(InetAddress networkAddress, boolean isReceiver) throws SocketE
socket.bind(new InetSocketAddress(networkAddress, port));
logger.info("Art-Net server started at: " + networkAddress.getHostAddress() + ":" + port);
} else {
logger.info("Art-Net server started as sender using ephemeral port.");
logger.info("Art-Net server started at: " + networkAddress.getHostAddress() + ":" + port + " (ephemeral mode)");
}

for (ArtNetServerListener l : listeners) {
Expand Down

0 comments on commit f993fb3

Please sign in to comment.