More indentation

This commit is contained in:
Kasper Rynning-Tønnesen
2017-09-22 11:45:54 +02:00
parent 68d243c93a
commit 9372bf3bf0
14 changed files with 2241 additions and 2265 deletions

View File

@@ -3,11 +3,11 @@ var mongojs = require('mongojs');
var db = mongojs(mongo_db_cred.config);
db.on('connected', function(err) {
console.log("connected");
console.log("connected");
})
db.on('error',function(err) {
console.log("\n" + new Date().toString() + "\n Database error: ", err);
console.log("\n" + new Date().toString() + "\n Database error: ", err);
});
module.exports = db;