Skip to content

Commit 411ee00

Browse files
committed
fix: undo logging
1 parent 8a2c0c0 commit 411ee00

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

pkg/controller/admin.go

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

563-
logger.Infof("payload is %+v\n", payload)
564-
565563
if err := utils.Validate.Struct(payload); err != nil {
566564
return c.JSON(http.StatusBadRequest, models.Response{
567565
Status: "fail",
568566
Data: utils.FormatValidationErrors(err),
569567
})
570568
}
571569

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

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

0 commit comments

Comments
 (0)