Skip to content

Commit 86a3319

Browse files
committed
quick logging fix
1 parent ea37088 commit 86a3319

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/actions/stripeWebhook.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const StripeWebhookParams = new Archetype({
2626
}).compile('StripeWebhookParams');
2727

2828
module.exports = async function stripeWebhook(params, req) {
29-
console.log('AB', req, req.headers['stripe-signature'], process.env.STRIPE_WEBHOOK_SECRET);
29+
console.log('AB', req, process.env.STRIPE_WEBHOOK_SECRET);
3030
try {
3131
stripe.client.webhooks.constructEvent(req.rawBody, req.headers['stripe-signature'], process.env.STRIPE_WEBHOOK_SECRET);
3232
} catch (err) {

0 commit comments

Comments
 (0)