This commit is contained in:
李子铭 2025-03-14 13:59:51 +08:00
parent e3f1959582
commit 7b927290bb
1 changed files with 5 additions and 0 deletions

View File

@ -48,6 +48,9 @@ func (s *VoucherService) CmbOrder(ctx http.Context) error {
return ctx.JSON(400, err) return ctx.JSON(400, err)
} }
replyBytes, _ := json.Marshal(reply)
log.Warnf("cmbOrder reply: %v", string(replyBytes))
return ctx.JSON(200, reply) return ctx.JSON(200, reply)
} }
@ -122,6 +125,8 @@ func (s *VoucherService) CmbQuery(ctx http.Context) error {
return ctx.JSON(400, err) return ctx.JSON(400, err)
} }
replyBytes, _ := json.Marshal(reply)
log.Warnf("cmbQuery reply: %v", string(replyBytes))
return ctx.JSON(200, reply) return ctx.JSON(200, reply)
} }