fanjinyang 1 周之前
父節點
當前提交
dd176f3238

+ 0 - 4
ad-engine-commons/src/main/java/com/tzld/piaoquan/ad/engine/commons/helper/CopcV3DataHelper.java

@@ -69,7 +69,6 @@ public class CopcV3DataHelper {
 
         int bucketNo = getBucketNo(score);
         String event = targetingConversion == null ? null : targetingConversion.trim();
-//        log.info("getLandingCoefficient score={}, landingPageType={},targetingConversion={},bucketNo={}",score,landingPageType, targetingConversion,bucketNo);
         if (event != null && !event.isEmpty()) {
             Double coefficient;
             if (bucketNo > 0 && landingPageType != null) {
@@ -77,7 +76,6 @@ public class CopcV3DataHelper {
                         landingPageType, bucketNo);
                 coefficient = getFiniteDoubleValue(landingKey);
                 if (coefficient != null) {
-//                    log.info("landing key={}",landingKey);
                     return coefficient;
                 }
             }
@@ -85,13 +83,11 @@ public class CopcV3DataHelper {
                 String bucketKey = String.format("%s:%s:%s", BUCKET_KEY_PREFIX, event, bucketNo);
                 coefficient = getFiniteDoubleValue(bucketKey);
                 if (coefficient != null) {
-//                    log.info("bucketKey key={}",bucketKey);
                     return coefficient;
                 }
             }
             coefficient = getFiniteDoubleValue(EVENT_KEY_PREFIX + ":" + event);
             if (coefficient != null) {
-//                log.info("EVENT_KEY_PREFIX key={}",EVENT_KEY_PREFIX + ":" + event);
                 return coefficient;
             }
         }