Update mongodb connection error message

This commit is contained in:
Sahat Yalkabov
2014-01-28 12:43:17 -05:00
parent 071ed1877c
commit d7b1bfe032

2
app.js
View File

@ -33,7 +33,7 @@ var passportConf = require('./config/passport');
mongoose.connect(secrets.db);
mongoose.connection.on('error', function() {
console.log(' MongoDB Connection Error →');
console.log(' MongoDB Connection Error. Please make sure MongoDB is running.'.red);
});
var app = express();