Skip to content

Commit 8a2c0c0

Browse files
committed
feat: idk
1 parent e84e663 commit 8a2c0c0

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

pkg/controller/admin.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -560,13 +560,17 @@ func UpdateTeamRounds(c echo.Context) error {
560560
})
561561
}
562562

563+
logger.Infof("payload is %+v\n", payload)
564+
563565
if err := utils.Validate.Struct(payload); err != nil {
564566
return c.JSON(http.StatusBadRequest, models.Response{
565567
Status: "fail",
566568
Data: utils.FormatValidationErrors(err),
567569
})
568570
}
569571

572+
logger.Infof("team id is %+v\n", payload.TeamId)
573+
570574
ctx := c.Request().Context()
571575

572576
team, err := utils.Queries.GetTeamById(ctx, payload.TeamId)

0 commit comments

Comments
 (0)