Commit dd08c85a authored by 技术部-任文超's avatar 技术部-任文超

debug

parent a776d178
...@@ -43,7 +43,7 @@ public class NewCaptchaController { ...@@ -43,7 +43,7 @@ public class NewCaptchaController {
return JsonResult.buildErrorStateResult("手机号格式错误", null); return JsonResult.buildErrorStateResult("手机号格式错误", null);
} }
// 唯一key,用于初始化极验 // 唯一key,用于初始化极验
String key = Optional.ofNullable(phoneNo).orElse(UUID.fromString(Constants.VERIFY_TYPE_GT).toString()); String key = Optional.ofNullable(phoneNo).orElse(UUID.randomUUID().toString());
// key指纹 // key指纹
String keyMd5 = PasswordUtil.MD5(key); String keyMd5 = PasswordUtil.MD5(key);
log.info("获取验证码, phoneNo:{}, keyMd5:{}, clientType:{}, ip:{}, verifyType-qg:{}", phoneNo, keyMd5, clientType, remoteIp, geetestClose); log.info("获取验证码, phoneNo:{}, keyMd5:{}, clientType:{}, ip:{}, verifyType-qg:{}", phoneNo, keyMd5, clientType, remoteIp, geetestClose);
......
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