Fix log level on hibernate.

Fix footer.
This commit is contained in:
Paulo Gustavo Veiga
2020-11-22 13:12:03 -08:00
parent 62fa88cb3e
commit 306c34d7d5
3 changed files with 6 additions and 43 deletions

View File

@@ -48,7 +48,7 @@ public class LegacyPasswordEncoder implements PasswordEncoder {
@Override
public String encode(CharSequence rawPassword) {
logger.info("LegacyPasswordEncoder encode executed.");
logger.debug("LegacyPasswordEncoder encode executed.");
return ENC_PREFIX + sha1Encoder.encode(rawPassword.toString(), "");
}