From: Darren Date: Sat, 17 Sep 2011 14:57:45 +0000 (+0100) Subject: Removed cache logging X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=b72774cd6089e63ae5a906437cd6bacd3f89d3ac;p=KiwiIRC.git Removed cache logging --- diff --git a/node/app.js b/node/app.js index b320641..3129061 100644 --- a/node/app.js +++ b/node/app.js @@ -600,7 +600,6 @@ this.httpHandler = function (request, response) { var html, hash2; if (!err) { html = kiwi.jade.compile(str)({ "touchscreen": touchscreen, "debug": debug, "server_set": server_set, "server": server, "nick": nick, "agent": agent, "config": kiwi.config }); - console.log(typeof html, html); hash2 = crypto.createHash('md5').update(html).digest('base64'); kiwi.cache.html[hash] = {"html": html, "hash": hash2}; if (request.headers['if-none-match'] === hash2) {