微信回调消费接收消息成功

This commit is contained in:
ziming 2025-05-28 21:29:57 +08:00
parent e3085019f4
commit 5924ee0c11
1 changed files with 1 additions and 1 deletions

View File

@ -152,7 +152,7 @@ func (w *WechatNotifyConsumer) processMessage(msg mq_http_sdk.ConsumeMessageEntr
ctx := context.Background() ctx := context.Background()
if err := w.voucherService.WechatUseNotifyConsumer(ctx, msg.MessageTag, msg.MessageBody); err != nil { if err := w.voucherService.WechatUseNotifyConsumer(ctx, msg.MessageTag, msg.MessageBody); err != nil {
log.Errorf("微信回调消费接收消息成功,处理失败 messageId:%s, messageTag:%s, message: %s, err:%+v", msg.MessageId, msg.MessageTag, msg.MessageBody, err) log.Errorf("微信回调消费接收消息成功,处理失败 messageId:%s, messageTag:%s, message:%s, err:%+v", msg.MessageId, msg.MessageTag, msg.MessageBody, err)
} }
} }