mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-26 03:19:02 +00:00
Merge branch '2.6.x' into 2.7.x
Closes gh-31984
This commit is contained in:
+3
-2
@@ -52,10 +52,11 @@ public class OptionalLiveReloadServer implements InitializingBean {
|
||||
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");
|
||||
|
||||
Reference in New Issue
Block a user