Commit 1ee1123f by Future

日志注释

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