Commit f58d5ee5 authored by duanruiming's avatar duanruiming

[update] 删除测试日志

parent 0c382ec1
......@@ -82,7 +82,6 @@ public class SignalStatusTask {
crossId = split[0];
}
long start = System.currentTimeMillis();
List<LightsStatusVO> lightsStatusVOS = null;
CrossInfoPO crossInfoPO = crossInfoMapper.selectByPrimaryKey(crossId);
ManufacturerInfoPO manufacturerInfoPO = manufacturerInfoMapper.selectById(crossInfoPO.getManufacturerId());
......@@ -96,8 +95,6 @@ public class SignalStatusTask {
JsonViewObject jsonViewObject = utcHisenseFeignClients.lightStatus(crossId);
lightsStatusVOS = mapper.convertValue(jsonViewObject.getContent(), new TypeReference<List<LightsStatusVO>>() {});
}
long end = System.currentTimeMillis();
log.info("当前路口编号:{},海康返回灯态时间:{}ms", crossId, (end - start));
RealTimeDataWebSocket webSocket = entry.getValue();
if (!CollectionUtils.isEmpty(lightsStatusVOS)) {
......@@ -130,6 +127,5 @@ public class SignalStatusTask {
} catch (Exception e) {
log.error("实时推送灯态数据失败", e);
}
log.info("当前线程数量:{}", Thread.currentThread().activeCount());
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment