Drop "got successful captcha" messages from INFO to DEBUG

This commit is contained in:
Jon Chambers
2021-11-22 16:08:39 -05:00
committed by Jon Chambers
parent 6198a7b69a
commit 0f08b6bb59

View File

@@ -41,7 +41,7 @@ public class LegacyRecaptchaClient implements RecaptchaClient {
.post(Entity.form(formData), VerifyResponse.class);
if (response.success) {
logger.info("Got successful captcha time: " + response.challenge_ts + ", current time: " + System.currentTimeMillis());
logger.debug("Got successful captcha time: " + response.challenge_ts + ", current time: " + System.currentTimeMillis());
}
return response.success;