remove localhost from startup message

main
Hunter Loftis 9 years ago
parent 415bfae62e
commit 3c167799a1

@ -9,5 +9,5 @@ app.get('/', function(request, response) {
});
app.listen(app.get('port'), function() {
console.log("Node app is running at localhost:" + app.get('port'));
console.log('Node app is running on port', app.get('port'));
});

Loading…
Cancel
Save