|
@@ -1,5 +1,6 @@
|
|
|
package cn.com.qmth.stmms.ms.commons.constant;
|
|
|
|
|
|
+import com.alibaba.fastjson.JSONObject;
|
|
|
import org.slf4j.Logger;
|
|
|
import org.slf4j.LoggerFactory;
|
|
|
|
|
@@ -43,7 +44,7 @@ public class ArbitrateCallback {
|
|
|
List<Distance> result = judge(LEVELS);
|
|
|
if (Objects.nonNull(result)) {
|
|
|
resultList = result.stream().map(o -> String.valueOf(o.c)).collect(Collectors.toList());
|
|
|
- LOGGER.info("LEVELS:{},设置的隔档档位为:{},需要打回的档位为:{}", LEVELS, MAX_DISTANCE, resultList);
|
|
|
+ LOGGER.info("LEVELS:{},设置的隔档档位为:{},设置的最大落差值和为:{},需要打回的档位为:{}", LEVELS, MAX_DISTANCE, SUM_DISTANCE, JSONObject.toJSONString(result));
|
|
|
}
|
|
|
return resultList;
|
|
|
}
|