Commit 1ee1123f by Future

日志注释

parent 08992b44
...@@ -59,7 +59,6 @@ public class GeneralMessageHandler { ...@@ -59,7 +59,6 @@ public class GeneralMessageHandler {
} catch (Exception ex) { } catch (Exception ex) {
actionException = ex; actionException = ex;
} }
log.info("调用完成");
processDispatchResult(am, res, actionException); processDispatchResult(am, res, actionException);
} }
...@@ -72,8 +71,6 @@ public class GeneralMessageHandler { ...@@ -72,8 +71,6 @@ public class GeneralMessageHandler {
private void processDispatchResult(ActionMessage am, private void processDispatchResult(ActionMessage am,
@Nullable Object res, @Nullable Object res,
@Nullable Exception exception) { @Nullable Exception exception) {
log.info("处理结果");
if (exception != null) { if (exception != null) {
log.error("dispatch action error:", exception); log.error("dispatch action error:", exception);
if (exception instanceof SpringBootPlusException) { if (exception instanceof SpringBootPlusException) {
......
...@@ -188,13 +188,13 @@ public class NormalChatAction { ...@@ -188,13 +188,13 @@ public class NormalChatAction {
// 在线用户直接发消息 // 在线用户直接发消息
Boolean sendSuccess = sendMsgForOnline(member.getFkClientId(), imMessageOnlineSend); Boolean sendSuccess = sendMsgForOnline(member.getFkClientId(), imMessageOnlineSend);
if (!sendSuccess && !member.getDoNotDisturb()) { // if (!sendSuccess && !member.getDoNotDisturb()) {
// 异步推送系统通知消息 // // 异步推送系统通知消息
PushDTO pushDTO = mqSender.buildPushDto(data.getPush(), member.getFkClientId(), member.getClientId(), imApplication); // PushDTO pushDTO = mqSender.buildPushDto(data.getPush(), member.getFkClientId(), member.getClientId(), imApplication);
if (pushDTO != null) { // if (pushDTO != null) {
mqSender.orderSend(MqConstant.Topic.IM_ORDER_MSG_TOPIC, MqConstant.Tag.IM_ORDER_MSG_TAG, pushDTO); // mqSender.orderSend(MqConstant.Topic.IM_ORDER_MSG_TOPIC, MqConstant.Tag.IM_ORDER_MSG_TAG, pushDTO);
} // }
} // }
} }
// 响应发送方消息id等信息 // 响应发送方消息id等信息
......
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