修复代码

This commit is contained in:
2022-09-22 18:08:06 +08:00
parent 8e8730d0bf
commit 8a78ac988f
15 changed files with 86 additions and 154 deletions

View File

@@ -56,7 +56,7 @@ public class GlobalExceptionHandler {
*/
@ExceptionHandler(value = NotLoginException.class)
public ResponseEntity<ApiError> notLoginException(Exception e) {
log.error(ThrowableUtil.getStackTrace(e));
// log.error(ThrowableUtil.getStackTrace(e));
return buildResponseEntity(ApiError.error(401,"token 失效"));
}