diff --git a/internal/merch/controller.go b/internal/merch/controller.go index 2221240..d3ce21d 100644 --- a/internal/merch/controller.go +++ b/internal/merch/controller.go @@ -252,7 +252,6 @@ func (co *controller) updateExtraData(c *gin.Context) { // @Summary Delete merch // @Description Marks merch and all its extra data as deleted by uuid. // @Tags Merch -// @Accept json // @Param uuid path string true "merch uuid" // @Success 204 // @Failure 400 {object} responses.BadRequest @@ -381,6 +380,7 @@ func (co *controller) getChartsPrices(c *gin.Context) { logErr(controllerLogHeader, err) return } + log.WithField("response", response).Debugf("%v %v get chart prices success", pkgLogHeader, controllerLogHeader) c.JSON(http.StatusOK, response) } @@ -419,6 +419,7 @@ func (co *controller) getDistinctPrices(c *gin.Context) { c.Status(http.StatusNoContent) return } + log.WithField("response", response).Debugf("%v %v get distinct prices success", pkgLogHeader, controllerLogHeader) c.JSON(http.StatusOK, response) }