Commit c222f237 by weijiguang

添加错误日志

parent c6cc75c0
...@@ -782,7 +782,7 @@ public class WeixinServiceImpl { ...@@ -782,7 +782,7 @@ public class WeixinServiceImpl {
String cutomerId = openId; String cutomerId = openId;
String encData = this.wxDecrypt(encryptedData, sessionKey, iv); String encData = this.wxDecrypt(encryptedData, sessionKey, iv);
log.info("当前用户的信息为:【{}】", encData); log.info("openId:{}, 当前用户的信息为:【{}】", openId, encData);
Customer customer = customerMapper.selectCustomerById(cutomerId); Customer customer = customerMapper.selectCustomerById(cutomerId);
JSONObject encDataInf = JSONObject.parseObject(encData); JSONObject encDataInf = JSONObject.parseObject(encData);
if (customer == null) { if (customer == null) {
......
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