Commit 32d49385 authored by John Crepezzi's avatar John Crepezzi
Browse files

Remove debug logging

parent d0e3e4cd
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -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');
      }
    });
  }