Skip to content

Commit

Permalink
app.js: report listening port when starting the http server.
Browse files Browse the repository at this point in the history
  • Loading branch information
pupitetris committed Jul 26, 2023
1 parent b5adaec commit 63201d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ app.use("/src", Express.static(__dirname + "/src"));
app.use("/cesium", Express.static(__dirname + "/node_modules/cesium/Build/CesiumUnminified"));
app.get("/", (req, res) => { res.redirect("index.html"); });

app.listen(PORT);
app.listen(PORT, () => { console.log('listening on port ' + PORT)});

0 comments on commit 63201d6

Please sign in to comment.