Skip to content

Commit

Permalink
fix(tjs): stringify logged object
Browse files Browse the repository at this point in the history
  • Loading branch information
Creeland authored and kodiakhq[bot] committed Mar 13, 2024
1 parent c28fbc6 commit be00613
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,11 @@ export async function receiveInternalStripeWebhooks({
})
} catch (error: any) {
console.log(
`webhook/stripe-internal error: ${{
`webhook/stripe-internal error: ${JSON.stringify({
message: error.message,
event: JSON.stringify(event),
body: JSON.stringify(body),
}}`,
event: event,
body: body,
})}`,
)

return {
Expand Down

0 comments on commit be00613

Please sign in to comment.