From 7553ccff68a2b8c49abd40d210f28f795cb1ba90 Mon Sep 17 00:00:00 2001 From: Caleb James DeLisle Date: Fri, 12 Feb 2016 08:24:46 +0100 Subject: [PATCH] Remove a log line which was leftover after debugging --- storage/lvl.js | 1 - 1 file changed, 1 deletion(-) diff --git a/storage/lvl.js b/storage/lvl.js index 14a091b2b..84ff57862 100644 --- a/storage/lvl.js +++ b/storage/lvl.js @@ -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); };