Bläddra i källkod

copc新增v3实验优化

fanjinyang 1 vecka sedan
förälder
incheckning
4569b837a1

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

@@ -69,7 +69,7 @@ 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);
+//        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 +77,7 @@ public class CopcV3DataHelper {
                         landingPageType, bucketNo);
                 coefficient = getFiniteDoubleValue(landingKey);
                 if (coefficient != null) {
-                    log.info("landing key={}",landingKey);
+//                    log.info("landing key={}",landingKey);
                     return coefficient;
                 }
             }
@@ -85,13 +85,13 @@ 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);
+//                    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);
+//                log.info("EVENT_KEY_PREFIX key={}",EVENT_KEY_PREFIX + ":" + event);
                 return coefficient;
             }
         }