Remove debug logging

This commit is contained in:
John Crepezzi 2011-11-21 22:04:12 -05:00
parent d0e3e4cd02
commit 32d49385a1

View file

@ -53,8 +53,6 @@ RedisDocumentStore.prototype.setExpiration = function(key) {
RedisDocumentStore.client.expire(key, this.expire, function(err, reply) { RedisDocumentStore.client.expire(key, this.expire, function(err, reply) {
if (err || !reply) { if (err || !reply) {
winston.error('failed to set expiry on key: ' + key); winston.error('failed to set expiry on key: ' + key);
} else {
console.log('set');
} }
}); });
} }