We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a2c0c0 commit 411ee00Copy full SHA for 411ee00
1 file changed
pkg/controller/admin.go
@@ -560,17 +560,13 @@ func UpdateTeamRounds(c echo.Context) error {
560
})
561
}
562
563
- logger.Infof("payload is %+v\n", payload)
564
-
565
if err := utils.Validate.Struct(payload); err != nil {
566
return c.JSON(http.StatusBadRequest, models.Response{
567
Status: "fail",
568
Data: utils.FormatValidationErrors(err),
569
570
571
572
- logger.Infof("team id is %+v\n", payload.TeamId)
573
574
ctx := c.Request().Context()
575
576
team, err := utils.Queries.GetTeamById(ctx, payload.TeamId)
0 commit comments