From 12e62df84630bcf2ee7d2099c4c61385ec7f9a30 Mon Sep 17 00:00:00 2001 From: Luke Slater Date: Thu, 15 Mar 2012 12:57:54 +0000 Subject: [PATCH] Removed debugging console.logs --- modules/quotes.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/modules/quotes.js b/modules/quotes.js index e805ebd..f4b1641 100644 --- a/modules/quotes.js +++ b/modules/quotes.js @@ -6,7 +6,6 @@ var quotes = function(dbot) { // Retrieve a random quote from a given category, interpolating any quote references (~~QUOTE CATEGORY~~) within it var interpolatedQuote = function(key, quoteTree) { if(quoteTree !== undefined && quoteTree.indexOf(key) != -1) { - console.log('nrll'); return ''; } else if(quoteTree === undefined) { quoteTree = []; @@ -173,7 +172,6 @@ var quotes = function(dbot) { } else { // Give total quote count var totalQuoteCount = 0; for(var category in quotes) { - console.log('adding ' + category.length); totalQuoteCount += category.length; } dbot.say(data.channel, 'There are ' + totalQuoteCount + ' quotes in total.');