Update storage.js

Remove the log of mongoDB credentials. For security reasons.
This commit is contained in:
Carlos Faria 2016-06-09 18:55:22 +01:00 committed by GitHub
parent d8633065cd
commit 51faf1acf3
1 changed files with 2 additions and 2 deletions

View File

@ -87,12 +87,12 @@ Storage.prototype.connect = function(opts, cb) {
var config = opts.mongoDb || {};
mongodb.MongoClient.connect(config.uri, function(err, db) {
if (err) {
log.error('Unable to connect to the mongoDB server on ', config.uri);
log.error('Unable to connect to the mongoDB. Check the credentials.');
return cb(err);
}
self.db = db;
self._createIndexes();
console.log('Connection established to ', config.uri);
console.log('Connection established to mongoDB');
return cb();
});
};