From: Carl Worth <cworth@cworth.org>
Date: Sun, 10 May 2020 15:50:08 +0000 (-0700)
Subject: Replace "Example app" with "Empires server" in the welcome message
X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=1e652af1e541675c021201743bfe1873f591944e;p=empires-server

Replace "Example app" with "Empires server" in the welcome message

Since this is far from being an example app at this point.
---

diff --git a/server.js b/server.js
index 7a13837..7ea999a 100644
--- 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');
 });