From 32d49385a1760a27f8d685973a0c364c6d2987a7 Mon Sep 17 00:00:00 2001 From: John Crepezzi Date: Mon, 21 Nov 2011 22:04:12 -0500 Subject: [PATCH] Remove debug logging --- lib/redis_document_store.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/redis_document_store.js b/lib/redis_document_store.js index d63aded..cf0a425 100644 --- a/lib/redis_document_store.js +++ b/lib/redis_document_store.js @@ -53,8 +53,6 @@ RedisDocumentStore.prototype.setExpiration = function(key) { RedisDocumentStore.client.expire(key, this.expire, function(err, reply) { if (err || !reply) { winston.error('failed to set expiry on key: ' + key); - } else { - console.log('set'); } }); }