Skip to content

Commit eb05996

Browse files
committed
wip
1 parent 6e45c7b commit eb05996

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

services/skus/controllers.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1323,6 +1323,9 @@ func handleStripeWebhook(svc *Service) handlers.AppHandler {
13231323
return handlers.WrapError(err, "failed to parse event", http.StatusBadRequest)
13241324
}
13251325

1326+
b, _ := json.Marshal(event)
1327+
lg.Info().Interface("data", string(b)).Msg("FULL DATA")
1328+
13261329
if err := svc.processStripeNotification(ctx, ntf); err != nil {
13271330
l := lg.With().Str("ntf_type", ntf.ntfType()).Str("ntf_subtype", ntf.ntfSubType()).Str("ntf_effect", ntf.effect()).Logger()
13281331

0 commit comments

Comments
 (0)