Skip to content

Commit

Permalink
Merge pull request #164 from Aiven-Open/jeqo/reduce-logging
Browse files Browse the repository at this point in the history
chore: reduce logging when auth is successful
  • Loading branch information
tvainika authored Jan 26, 2024
2 parents d633cdb + ea1eafe commit 68fc29e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public boolean authenticate(final String username, final char[] password) {
LOGGER.error("Authentication failed for {}, no password set", username);
return false;
} else if (storedPassword.equals(strPassword)) {
LOGGER.info("Authentication successful for {}", username);
LOGGER.debug("Authentication successful for {}", username);
return true;
} else {
LOGGER.error("Authentication failed for {}, invalid password", username);
Expand Down

0 comments on commit 68fc29e

Please sign in to comment.