You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@rocketmq.apache.org by ji...@apache.org on 2021/11/06 00:55:36 UTC

[rocketmq-spring] branch master updated: [ISSUE#402] supplement rocketmq sync send message failed log out.

This is an automated email from the ASF dual-hosted git repository.

jinrongtong pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/rocketmq-spring.git


The following commit(s) were added to refs/heads/master by this push:
     new ceeb52e  [ISSUE#402] supplement rocketmq sync send message failed log out.
ceeb52e is described below

commit ceeb52e38f0821a94956ed52a9fcd2f80460d818
Author: andotorg <an...@outlook.com>
AuthorDate: Sat Nov 6 08:53:30 2021 +0800

    [ISSUE#402] supplement rocketmq sync send message failed log out.
    
    Co-authored-by: lucas <xi...@tal.com>
---
 .../src/main/java/org/apache/rocketmq/spring/core/RocketMQTemplate.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/rocketmq-spring-boot/src/main/java/org/apache/rocketmq/spring/core/RocketMQTemplate.java b/rocketmq-spring-boot/src/main/java/org/apache/rocketmq/spring/core/RocketMQTemplate.java
index 8b1af2a..9bef666 100644
--- a/rocketmq-spring-boot/src/main/java/org/apache/rocketmq/spring/core/RocketMQTemplate.java
+++ b/rocketmq-spring-boot/src/main/java/org/apache/rocketmq/spring/core/RocketMQTemplate.java
@@ -562,7 +562,7 @@ public class RocketMQTemplate extends AbstractMessageSendingTemplate<String> imp
             }
             return sendResult;
         } catch (Exception e) {
-            log.error("syncSend failed. destination:{}, message:{} ", destination, message);
+            log.error("syncSend failed. destination:{}, message:{}, detail exception info: ", destination, message, e);
             throw new MessagingException(e.getMessage(), e);
         }
     }