提交 79890cb3 编写于 作者: D duhengforever

Modify log level

上级 8c38d5ee
...@@ -289,7 +289,7 @@ public class DefaultMQProducerImpl implements MQProducerInner { ...@@ -289,7 +289,7 @@ public class DefaultMQProducerImpl implements MQProducerInner {
if (transactionCheckListener != null) { if (transactionCheckListener != null) {
localTransactionState = transactionCheckListener.checkLocalTransactionState(message); localTransactionState = transactionCheckListener.checkLocalTransactionState(message);
} else if (transactionListener != null) { } else if (transactionListener != null) {
log.info("Used new check API in transaction message"); log.debug("Used new check API in transaction message");
localTransactionState = transactionListener.checkLocalTransaction(message); localTransactionState = transactionListener.checkLocalTransaction(message);
} else { } else {
log.warn("CheckTransactionState, pick transactionListener by group[{}] failed", group); log.warn("CheckTransactionState, pick transactionListener by group[{}] failed", group);
...@@ -1152,7 +1152,7 @@ public class DefaultMQProducerImpl implements MQProducerInner { ...@@ -1152,7 +1152,7 @@ public class DefaultMQProducerImpl implements MQProducerInner {
if (null != localTransactionExecuter) { if (null != localTransactionExecuter) {
localTransactionState = localTransactionExecuter.executeLocalTransactionBranch(msg, arg); localTransactionState = localTransactionExecuter.executeLocalTransactionBranch(msg, arg);
} else if (transactionListener != null) { } else if (transactionListener != null) {
log.info("Used new transaction API"); log.debug("Used new transaction API");
transactionListener.executeLocalTransaction(msg, arg); transactionListener.executeLocalTransaction(msg, arg);
} }
if (null == localTransactionState) { if (null == localTransactionState) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册