Commit d4ba4d54 authored by Rene Saarsoo's avatar Rene Saarsoo
Browse files

Print out on which port the comments server runs.

Just helpful when starting up the server for the first time.
parent 86f039f8
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -331,7 +331,7 @@ app.namespace('/auth/:sdk/:version', function(){

});


app.listen(3000);
console.log("Server started...");
var port = 3000;
app.listen(port);
console.log("Server started at port "+port+"...");