]> git.cworth.org Git - empires-server/commitdiff
Replace "Example app" with "Empires server" in the welcome message
authorCarl Worth <cworth@cworth.org>
Sun, 10 May 2020 15:50:08 +0000 (08:50 -0700)
committerCarl Worth <cworth@cworth.org>
Sun, 10 May 2020 15:50:08 +0000 (08:50 -0700)
Since this is far from being an example app at this point.

server.js

index 7a1383730d848bd118657d42d67b1729010dbfe9..7ea999aa71372a6be41c927e24cd4542b5a6eb9d 100644 (file)
--- a/server.js
+++ b/server.js
@@ -184,5 +184,5 @@ app.get('/players', (request, response) => {
 app.get('/events', handle_events);
 
 app.listen(3000, function () {
-  console.log('Example app listening on port 3000!');
+  console.log('Empires server listening on localhost:3000');
 });