Browse Source

add log conditional

pull/51/head
Jonathan Cobb 4 years ago
parent
commit
a86180c7f4
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      bubble-server/src/main/java/bubble/rule/AppRuleDriver.java

+ 1
- 1
bubble-server/src/main/java/bubble/rule/AppRuleDriver.java View File

@@ -82,7 +82,7 @@ public interface AppRuleDriver {
redis.rename(tempList, ipList);
redis.sadd_plaintext(listOfListsForIp, ipList);
final Long count = redis.sunionstore(unionSetName, redis.smembers(listOfListsForIp));
log.debug("defineRedisSet("+ip+","+listOfListsName+","+listName+"): unionSetName="+unionSetName+" size="+count);
if (log.isDebugEnabled()) log.debug("defineRedisSet("+ip+","+listOfListsName+","+listName+"): unionSetName="+unionSetName+" size="+count);
}

static boolean isFlexRouteFqdn(RedisService redis, String ip, String[] fqdns) {


Loading…
Cancel
Save