|
@@ -95,7 +95,8 @@ public class RankServiceImpl implements RankService {
|
|
|
object.put("lrsamples",rankResult.get(0).getLrSampleString());
|
|
|
object.put("dataTime",currentTime.format(timeFormatter));
|
|
|
log.info("svc=adItemRank {}", JSONObject.toJSONString(object));
|
|
|
- log.info("svc=pid_log obj={}", JSONObject.toJSONString(object.remove("lrsamples")));
|
|
|
+ object.remove("lrsamples");
|
|
|
+ log.info("svc=pid_log obj={}", JSONObject.toJSONString(object));
|
|
|
return rankResult.get(0);
|
|
|
}else {
|
|
|
//空返回值
|
|
@@ -193,7 +194,8 @@ public class RankServiceImpl implements RankService {
|
|
|
object.put("lrsamples",topItem.getLrSampleString());
|
|
|
object.put("dataTime",currentTime.format(timeFormatter));
|
|
|
log.info("svc=adBidRank {}", JSONObject.toJSONString(object));
|
|
|
- log.info("svc=pid_log obj={}", JSONObject.toJSONString(object.remove("lrsamples")));
|
|
|
+ object.remove("lrsamples");
|
|
|
+ log.info("svc=pid_log obj={}", JSONObject.toJSONString(object));
|
|
|
return result;
|
|
|
}
|
|
|
|