Remove a log line which was leftover after debugging

This commit is contained in:
Caleb James DeLisle 2016-02-12 08:24:46 +01:00
parent 13360c335b
commit 7553ccff68
1 changed files with 0 additions and 1 deletions

View File

@ -23,7 +23,6 @@ var insert = function (db, channelName, content, cb) {
db.put(channelName+'=>'+index, content, waitFor(function (e) { if (e) { throw e; } }));
}).nThen(function (waitFor) {
db.put(channelName+'=>index', ''+index, waitFor(function (e) { if (e) { throw e; } }));
console.log(index);
}).nThen(cb);
};