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

取消注解log(引发了其他切面出现NPE),添加本地logger

parent d0b9daac
......@@ -96,15 +96,15 @@ public class UserController implements IBaseController {
* @return
*/
@CaptchaFineteValidator
@LogHttpCaller
@RequestMapping("/loginForH5")
public JsonResult loginWithFineteCaptcha(
public JsonResult loginV1(
@RequestParam(required = false, defaultValue = "1") Long channelId, String appChannel,
@RequestParam(required = false, defaultValue = "1") Long createdFrom,
@RequestParam(required = false, defaultValue = "") String userId,
@RequestParam(required = false,defaultValue = "xyqb") String key,
HttpServletRequest request, String openId,
@RequestParam(required = false) String dimension) {
LOGGER.info("loginForH5 - loginV1,channelId:{},appChennel:{},createdFrom:{},userId:{},key:{},openId:{},dimension:{}",channelId, appChannel, createdFrom, userId, key, openId, dimension);
return login(channelId, appChannel, createdFrom, userId, key, request, openId, dimension);
}
......@@ -123,14 +123,14 @@ public class UserController implements IBaseController {
* @return
*/
@OneTimeTokenValidator
@LogHttpCaller
@RequestMapping("/login/fastForH5")
public JsonResult loginFastWithFineteCaptcha(
public JsonResult loginFastV1(
@RequestParam(required = false, defaultValue = "1") Long channelId, String appChannel,
@RequestParam(required = false, defaultValue = "1") Long createdFrom,
@RequestParam(required = false,defaultValue = "xyqb") String key,
@RequestParam(required = false)Long btRegisterChannelId,
@RequestParam(required = false) String dimension ,HttpServletRequest request) {
LOGGER.info("login/fastForH5 - loginFastV1,channelId:{},appChennel:{},createdFrom:{},key:{},btRegisterChannelId:{},dimension:{}",channelId, appChannel, createdFrom, key, btRegisterChannelId, dimension);
return loginFast(channelId, appChannel, createdFrom, key, btRegisterChannelId, dimension, request);
}
......
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