Skip to content

Commit

Permalink
feat: log email to inform customer
Browse files Browse the repository at this point in the history
  • Loading branch information
aalemayhu committed Oct 12, 2024
1 parent df50e49 commit a669539
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/storage/jobs/helpers/updateStripeSubscriptions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const updateStripeSubscriptions = async () => {
.first();

if (sub && !sub.active) {
console.info('Updating customer', customer.id);
console.info('Updating customer', customer.id, customer.email);
await database
.table('subscriptions')
.where({ email: customer.email })
Expand Down

0 comments on commit a669539

Please sign in to comment.