Skip to content

Commit

Permalink
add text removed by mistake because of VI ...
Browse files Browse the repository at this point in the history
  • Loading branch information
wazari972 committed Jan 13, 2015
1 parent 541cb74 commit 725cdcd
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion WebAlbums-Bootstrap/src/net/wazari/bootstrap/Gui.java
Expand Up @@ -102,7 +102,11 @@ public static void startServer() throws AppServerException, IOException {
long loadingTime = System.currentTimeMillis();
float time = ((float) (loadingTime - timeStart) / 1000);

log.info("Ready to server at http://localhost:{}/WebAlbumsid waitForPortStop() throws IOException {
log.info("Ready to server at http://localhost:{}/WebAlbums-dev after {}s",
Util.cfg.port, time);
}

public static void waitForPortStop() throws IOException {
try (ServerSocket servSocker = new ServerSocket(Util.cfg.port+1)) {
servSocker.accept().close();
}
Expand Down

0 comments on commit 725cdcd

Please sign in to comment.