From dbd47457631a7f47d667f04a087c410ca539ca18 Mon Sep 17 00:00:00 2001 From: hongawen <83944980@qq.com> Date: Wed, 30 Aug 2023 09:49:43 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E8=AE=A4=E8=AF=81=E6=97=A5?= =?UTF-8?q?=E5=BF=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/java/com/njcn/auth/exception/AuthExceptionHandler.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pqs-auth/src/main/java/com/njcn/auth/exception/AuthExceptionHandler.java b/pqs-auth/src/main/java/com/njcn/auth/exception/AuthExceptionHandler.java index f7464fe6e..e963ff2dc 100644 --- a/pqs-auth/src/main/java/com/njcn/auth/exception/AuthExceptionHandler.java +++ b/pqs-auth/src/main/java/com/njcn/auth/exception/AuthExceptionHandler.java @@ -42,7 +42,7 @@ public class AuthExceptionHandler { @ExceptionHandler(InvalidGrantException.class) public HttpResult handleInvalidGrantException(HttpServletRequest httpServletRequest, InvalidGrantException invalidGrantException) { String loginName = invalidGrantException.getMessage(); - + log.error("捕获用户名密码错误"); HttpResult result = userFeignClient.updateUserLoginErrorTimes(loginName); if (result.getData().equals(UserResponseEnum.LOGIN_USER_LOCKED.getMessage())) { logService.recodeAuthExceptionLog(invalidGrantException, httpServletRequest, UserResponseEnum.LOGIN_USER_LOCKED.getMessage(), loginName);