Remove debug logging

raw_icon
John Crepezzi 14 years ago
parent d0e3e4cd02
commit 32d49385a1
  1. 2
      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');
}
});
}

Loading…
Cancel
Save