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'); } }); }