Drop "got successful captcha" messages from `INFO` to `DEBUG`
This commit is contained in:
parent
6198a7b69a
commit
0f08b6bb59
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue