|
@@ -89,6 +89,7 @@ public class RankServiceImpl implements RankService {
|
|
|
JSONObject object=new JSONObject();
|
|
|
object.put("request",request);
|
|
|
object.put("rankResult",rankResult.get(0));
|
|
|
+ object.put("lrsamples",rankResult.get(0).getLrSampleString());
|
|
|
object.put("dataTime",currentTime.format(timeFormatter));
|
|
|
log.info("svc=adItemRank {}", JSONObject.toJSONString(object));
|
|
|
return rankResult.get(0);
|
|
@@ -173,6 +174,7 @@ public class RankServiceImpl implements RankService {
|
|
|
JSONObject object=new JSONObject();
|
|
|
object.put("request",request);
|
|
|
object.put("rankResult",result);
|
|
|
+ object.put("lrsamples",topItem.getLrSampleString());
|
|
|
object.put("dataTime",currentTime.format(timeFormatter));
|
|
|
log.info("svc=adBidRank {}", JSONObject.toJSONString(object));
|
|
|
return result;
|