From 2e9f32cd1024b5c2804e6ddd559a8afee39264d8 Mon Sep 17 00:00:00 2001 From: ansuz Date: Sun, 25 Oct 2015 19:40:39 -0400 Subject: [PATCH] amnesia.js : remove log statement that would otherwise get really annoying really quickly --- storage/amnesia.js | 1 - 1 file changed, 1 deletion(-) diff --git a/storage/amnesia.js b/storage/amnesia.js index 4024f7470..71bf32f81 100644 --- a/storage/amnesia.js +++ b/storage/amnesia.js @@ -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); }); };