Commit cb90eb4c authored by 赵啸非's avatar 赵啸非

设备添加产品编码字段,并添加同步更新产品编码字段

parent b952ab37
...@@ -15,12 +15,12 @@ public class MessageCallbackServiceImpl implements MessageCallbackService { ...@@ -15,12 +15,12 @@ public class MessageCallbackServiceImpl implements MessageCallbackService {
@Override @Override
public void confirm(CorrelationData correlationData, boolean ack, String cause) { public void confirm(CorrelationData correlationData, boolean ack, String cause) {
log.info("returnedMessage,correlationData:{},ack:{},cause:{},routingKey:{}", JSON.toJSONString(correlationData), ack, cause); log.debug("confirm,correlationData:{},ack:{},cause:{}", JSON.toJSONString(correlationData), ack, cause);
} }
@Override @Override
public void returnedMessage(Message message, int replyCode, String replyText, String exchange, String routingKey) { public void returnedMessage(Message message, int replyCode, String replyText, String exchange, String routingKey) {
log.info("returnedMessage,replyCode:{},replyText:{},exchange:{},routingKey:{}", replyCode, replyText, exchange, routingKey); log.debug("returnedMessage,replyCode:{},replyText:{},exchange:{},routingKey:{}", replyCode, replyText, exchange, routingKey);
} }
} }
\ No newline at end of file
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