* remove the unnecessary catch in the login method * catch the throwable error when login and print the message
This commit is contained in:
parent
6c270cb3ac
commit
2f82f070fe
@ -114,7 +114,8 @@ public class SecurityProxy {
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} catch (Throwable ignore) {
|
} catch (Throwable throwable) {
|
||||||
|
SECURITY_LOGGER.warn("[SecurityProxy] login failed, error: ", throwable);
|
||||||
}
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
|
Loading…
Reference in New Issue
Block a user