Authored by TANLING

add log

@@ -62,10 +62,13 @@ public class ProductLimitCollector { @@ -62,10 +62,13 @@ public class ProductLimitCollector {
62 for (LimitValueHandler limitValueHandler : LIMIT_VALUES_LIST){ 62 for (LimitValueHandler limitValueHandler : LIMIT_VALUES_LIST){
63 63
64 if (!limitValueHandler.isMatch(shoppingProductInfo, productLimitInfo)){ 64 if (!limitValueHandler.isMatch(shoppingProductInfo, productLimitInfo)){
  65 + logger.info("{} product limit not match, goods info {}, coupon info {}", limitValueHandler.getLimitValue(), shoppingProductInfo, productLimitInfo);
65 return false; 66 return false;
66 } 67 }
67 } 68 }
68 69
  70 + logger.info("product limit matched, goods info {}, coupon info {}", shoppingProductInfo, productLimitInfo);
  71 +
69 return true; 72 return true;
70 } 73 }
71 74