wangyuan 2019-09-19 15:20:15 +08:00
parent 96f70453ed
commit 07bfda4d18
1 changed files with 2 additions and 1 deletions

View File

@ -45,7 +45,7 @@ public class GetUserController extends HttpServlet {
response.sendError(400, "openId is empety");
return;
}
LOGGER.info("the opendId = {}",openId);
LOGGER.info("the opendId = {},isTestLan={}",openId,isTestLan);
String serverId = request.getParameter("serverId");
if (serverId == null || serverId.isEmpty()) {
response.sendError(400, "serverId is empety");
@ -61,6 +61,7 @@ public class GetUserController extends HttpServlet {
response.sendError(400, "platform is empety");
return;
}
LOGGER.info("the opendId = {},token={},platform={}",openId,token,platform);
try {
if(isTestLan==1){
boolean result = loginVerfifyByTestLan(openId, token);