Showing
1 changed file
with
2 additions
and
2 deletions
@@ -406,10 +406,10 @@ public class UnionServiceImpl implements IUnionService,ApplicationEventPublisher | @@ -406,10 +406,10 @@ public class UnionServiceImpl implements IUnionService,ApplicationEventPublisher | ||
406 | app_key = "yohomars_ios"; | 406 | app_key = "yohomars_ios"; |
407 | } | 407 | } |
408 | List<AppActivateIdfaList> _90DayIdfaList = appActivateIdfaListDAO.selectByUdidAndDate(new AppActivateIdfaList(Long.valueOf(yesterday), request.getUdid(), app_key)); | 408 | List<AppActivateIdfaList> _90DayIdfaList = appActivateIdfaListDAO.selectByUdidAndDate(new AppActivateIdfaList(Long.valueOf(yesterday), request.getUdid(), app_key)); |
409 | - activeUnion.info("check ios active info in 90 days. udid is {} and app_key is {},yesterday is {} and result is {}", request.getUdid(), app_key, yesterday, (_90DayIdfaList.isEmpty() || _90DayIdfaList.size() == 0)? "null": _90DayIdfaList.get(0)); | 409 | + activeUnion.info("check ios active info in 90 days. udid is {} and app_key is {},yesterday is {} and result is {}", request.getUdid(), app_key, yesterday, (null == _90DayIdfaList || _90DayIdfaList.size() == 0)? "null": _90DayIdfaList.get(0)); |
410 | 410 | ||
411 | List<AppActivateIdfaList> _15DayIdfaList = appActivateIdfaListDAO.select15DaysByIdfaAndDate(new AppActivateIdfaList(Long.valueOf(yesterday), request.getIdfa(), app_key, null)); | 411 | List<AppActivateIdfaList> _15DayIdfaList = appActivateIdfaListDAO.select15DaysByIdfaAndDate(new AppActivateIdfaList(Long.valueOf(yesterday), request.getIdfa(), app_key, null)); |
412 | - activeUnion.info("check ios active info in 15 days. udid is {} and app_key is {},yesterday is {} and result is {}", request.getUdid(), app_key, yesterday, (_15DayIdfaList.isEmpty() || _15DayIdfaList.size() == 0)? "null": _15DayIdfaList.get(0)); | 412 | + activeUnion.info("check ios active info in 15 days. udid is {} and app_key is {},yesterday is {} and result is {}", request.getUdid(), app_key, yesterday, (null == _15DayIdfaList || _15DayIdfaList.size() == 0)? "null": _15DayIdfaList.get(0)); |
413 | 413 | ||
414 | //判断90天内是否在大数据有记录 | 414 | //判断90天内是否在大数据有记录 |
415 | if (CollectionUtils.isNotEmpty(_90DayIdfaList)) { | 415 | if (CollectionUtils.isNotEmpty(_90DayIdfaList)) { |
-
Please register or login to post a comment