Skip to content

Commit

Permalink
Log allocated port when Livereload server is using an ephemeral port
Browse files Browse the repository at this point in the history
Closes gh-31983
  • Loading branch information
wilkinsona committed Aug 4, 2022
1 parent 1614941 commit 7c0ccdf
Showing 1 changed file with 3 additions and 2 deletions.
Expand Up @@ -52,10 +52,11 @@ public void afterPropertiesSet() throws Exception {
void startServer() {
if (this.server != null) {
try {
int port = this.server.getPort();
if (!this.server.isStarted()) {
this.server.start();
port = this.server.start();
}
logger.info(LogMessage.format("LiveReload server is running on port %s", this.server.getPort()));
logger.info(LogMessage.format("LiveReload server is running on port %s", port));
}
catch (Exception ex) {
logger.warn("Unable to start LiveReload server");
Expand Down

0 comments on commit 7c0ccdf

Please sign in to comment.