diff --git a/index.js b/index.js index a22ced3..ee81c97 100644 --- a/index.js +++ b/index.js @@ -11,13 +11,11 @@ module.exports.cacheSeconds = function(ttl) { var cache = cachestore.get(req.path); if (cache) { - console.info('routecache hit'); res.send(cache); } else { var send = res.send; res.send = function(string) { var body = string instanceof Buffer ? string.toString() : string; - console.info('routecache\'d: ' + req.path, ' length: ' + body.length); cachestore.put(req.path, body, ttl); send.call(this, body); };