Adjust log level

This commit is contained in:
Paulo Gustavo Veiga
2022-02-13 08:25:09 -08:00
parent c269cd9edb
commit fb1755768c
4 changed files with 5 additions and 5 deletions

View File

@@ -51,7 +51,7 @@ public class RecaptchaService {
.asBytes();
final Map responseBody = objectMapper.readValue(body, HashMap.class);
logger.warn("Response from recaptcha after parse: " + responseBody);
logger.debug("Response from recaptcha after parse: " + responseBody);
final Boolean success = (Boolean) responseBody.get("success");
if (success != null && !success) {