@@ -63,6 +63,7 @@ public class RankRouter {
for (Map.Entry<String, RankService> entry : strategyMap.entrySet()) {
boolean hitExp = experimentService.judgeHitExp(param.getAppType(), param.getRootSessionId(), null, entry.getKey());
if (hitExp) {
+ log.info("apType: {}, rootSessionId: {} 命中实验: {} strategies: {}", param.getAppType(), param.getRootSessionId(), entry.getKey(), entry.getValue().getClass().getSimpleName());
return entry.getValue().rank(param);
}