aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--web/routes/index.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/web/routes/index.js b/web/routes/index.js
index d0b3d7c..ffe1c21 100644
--- a/web/routes/index.js
+++ b/web/routes/index.js
@@ -20,6 +20,8 @@ if (env === 'development') {
mongoose.connect(uri, { useNewUrlParser: true }, function (error) {
if (error) {
console.log(error);
+ console.log("App was not able to connect to the mongo server!");
+ console.log("... double check that the mongo server is running locally");
} else {
console.log(`connected to ${uri}`);
}