修复代码

parent 2667f5d5
...@@ -195,7 +195,6 @@ public class UserController implements IBaseController { ...@@ -195,7 +195,6 @@ public class UserController implements IBaseController {
if (merchant == null) { if (merchant == null) {
return JsonResult.buildErrorStateResult("未知的连接", null); return JsonResult.buildErrorStateResult("未知的连接", null);
} }
LOGGER.info("key",merchant.getName());
JsonResult successResult = validMap.get("success"); JsonResult successResult = validMap.get("success");
String phoneNo = successResult.getData().toString(); String phoneNo = successResult.getData().toString();
User user = userService.findByPhoneWithCache(phoneNo); User user = userService.findByPhoneWithCache(phoneNo);
......
...@@ -42,7 +42,6 @@ public class SessionServiceImpl implements ISessionService { ...@@ -42,7 +42,6 @@ public class SessionServiceImpl implements ISessionService {
AuthBean authBean = new AuthBean(); AuthBean authBean = new AuthBean();
LoginProperties properties = new LoginProperties(); LoginProperties properties = new LoginProperties();
properties.setAppChannel(appChannel); properties.setAppChannel(appChannel);
log.info("merchant:{}",merchant.getName());
if(null!=merchant){ if(null!=merchant){
properties.setMerchantName(merchant.getName()); properties.setMerchantName(merchant.getName());
} }
......
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