Skip to content

Commit

Permalink
Remove unnecessary logging from user authentication process
Browse files Browse the repository at this point in the history
The logging statement was removed for a failed login attempt in the OktaOAuthAuthenticationService. This action contributes to clearer and cleaner code and helps maintain the privacy of failing user attempts.
  • Loading branch information
Gcolon021 committed Jan 25, 2024
1 parent 059167c commit 353925e
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ public Response authenticate(UriInfo uriInfo, Map<String, String> authRequest) {
User user = initializeUser(introspectResponse);

if (user == null) {
logger.info("LOGIN FAILED ___ USER NOT FOUND ___ " + userToken.get("uid").asText() + ":" + userToken.get("sub").asText() + " ___");
return PICSUREResponse.error(" LOGIN FAILED ___ USER NOT FOUND ___ ");
}

Expand Down

0 comments on commit 353925e

Please sign in to comment.