chore(gateway): update log output in websocket gateway

This commit is contained in:
2026-05-01 21:43:40 +08:00
parent 32f0c5c6a8
commit 843549dadf

View File

@@ -40,7 +40,7 @@ public class WebSocketGateway extends WebSocketServer implements AgentGateway<In
this.setReuseAddr(true);
this.executor = Executors.newSingleThreadExecutor();
log.info("WebSocketGateway started on {}: {}", hostname, port);
log.info("WebSocketGateway will start on {}: {}", hostname, port);
}
public void launch() {
@@ -49,6 +49,7 @@ public class WebSocketGateway extends WebSocketServer implements AgentGateway<In
}
this.start();
startHeartbeatThread();
log.info("WebSocketGateway started");
}
@Override