We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 416f0d2 commit 684f527Copy full SHA for 684f527
djangoproject/static/js/mod/stripe-donation.js
@@ -20,7 +20,7 @@ define([
20
data: data,
21
dataType: 'json',
22
success: (data) => {
23
- console.info(data);
+ console.debug(data);
24
if (data.success) {
25
const stripe = Stripe($donationForm.data('stripeKey'));
26
return stripe.redirectToCheckout({ sessionId: data.sessionId });
@@ -54,7 +54,7 @@ define([
54
// NOTE: the `action` key must match the one defined on the widget.
55
grecaptcha.execute(public_key, { action: 'form' }).then((token) => {
56
captcha_input.value = token;
57
- console.info('reCAPTCHA validated. Posting to stripe...');
+ console.debug('reCAPTCHA validated. Posting to stripe...');
58
postToStripe(token);
59
});
60
0 commit comments