amnesia.js : remove log statement that would otherwise get really annoying really quickly

This commit is contained in:
ansuz
2015-10-25 19:40:39 -04:00
parent 0f73ea793d
commit 2e9f32cd10

View File

@@ -35,7 +35,6 @@ var getMessages = function(channelName, cb){
db.filter(function(val){
return val.chan == channelName;
}).forEach(function(doc){
console.log(doc);
cb(doc.msg);
});
};