Showing
1 changed file
with
2 additions
and
1 deletions
@@ -533,11 +533,12 @@ public class UnionServiceImpl implements IUnionService,ApplicationEventPublisher | @@ -533,11 +533,12 @@ public class UnionServiceImpl implements IUnionService,ApplicationEventPublisher | ||
533 | 533 | ||
534 | //如果是通过邀请码二维码下载, 则返回落地页添加邀请码信息 | 534 | //如果是通过邀请码二维码下载, 则返回落地页添加邀请码信息 |
535 | String landingUrl = mktMarketingUrl.getLandingPageUrl(); | 535 | String landingUrl = mktMarketingUrl.getLandingPageUrl(); |
536 | + activeUnion.info("get landing_page_url. mktMarketingUrl is {}, landingUrl is {}, invitecodeValue ={}", mktMarketingUrl, landingUrl, click.getInvite_code()); | ||
536 | if(StringUtils.isNotEmpty(landingUrl) && StringUtils.isNotEmpty(click.getInvite_code())){ | 537 | if(StringUtils.isNotEmpty(landingUrl) && StringUtils.isNotEmpty(click.getInvite_code())){ |
537 | landingUrl = (String)result.replace("invitecodeValue", click.getInvite_code()); | 538 | landingUrl = (String)result.replace("invitecodeValue", click.getInvite_code()); |
538 | } | 539 | } |
539 | result.put("landing_page_url", StringUtils.isEmpty(landingUrl) ? "" : mktMarketingUrl.getLandingPageUrl()); | 540 | result.put("landing_page_url", StringUtils.isEmpty(landingUrl) ? "" : mktMarketingUrl.getLandingPageUrl()); |
540 | - activeUnion.info("active union. union_type = {}, landing_page_url = {}, idfa = {}, imei = {}", click.getUnion_type(), landingUrl, request.getIdfa(), request.getImei()); | 541 | + activeUnion.info("active union. union_type = {}, landing_page_url = {}, result = {}, idfa = {}, imei = {}", click.getUnion_type(), landingUrl, result, request.getIdfa(), request.getImei()); |
541 | 542 | ||
542 | String url = null; | 543 | String url = null; |
543 | //根据不同的url走不同的回调 | 544 | //根据不同的url走不同的回调 |
-
Please register or login to post a comment