Commit 4b0c1414 by Future

日志添加

parent 76385923
...@@ -135,8 +135,9 @@ public class ChannelSender { ...@@ -135,8 +135,9 @@ public class ChannelSender {
String msgJson = JsonUtils.encodeJson(responseModel); String msgJson = JsonUtils.encodeJson(responseModel);
long time1 = System.currentTimeMillis();
List<ClientChannelInfo> channelInfos = userStateCacheManager.findOnlineInfosByClientId(toClientId); List<ClientChannelInfo> channelInfos = userStateCacheManager.findOnlineInfosByClientId(toClientId);
// log.info("获取在线用户入参 {}, 结果 {}", toClientId, JSON.toJSONString(channelInfos)); log.info("获取在线用户耗时 {}", System.currentTimeMillis() - time1);
if (CollectionUtils.isEmpty(channelInfos)) { if (CollectionUtils.isEmpty(channelInfos)) {
return false; return false;
......
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