Authored by caoyan

商品详情增加传图模块

@@ -65,7 +65,7 @@ public class SizePoolService implements ISizePoolService{ @@ -65,7 +65,7 @@ public class SizePoolService implements ISizePoolService{
65 public int addSizePool(SizePoolRequest bo) throws PlatformException { 65 public int addSizePool(SizePoolRequest bo) throws PlatformException {
66 Optional<SizePoolRequest> poolOptional = Optional.ofNullable(bo); 66 Optional<SizePoolRequest> poolOptional = Optional.ofNullable(bo);
67 if(!poolOptional.isPresent() || null == bo.getRangeType()){ 67 if(!poolOptional.isPresent() || null == bo.getRangeType()){
68 - logger.warn("in addSizePool, rangeType is null"); 68 + logger.warn("in addSizePool, rangeType is null, bo is {}", bo);
69 return 0; 69 return 0;
70 } 70 }
71 71