diff --git a/server/product/internal/logic/homepagerecommendproductlistlogic.go b/server/product/internal/logic/homepagerecommendproductlistlogic.go index 9c70f5ca..e9d4694f 100644 --- a/server/product/internal/logic/homepagerecommendproductlistlogic.go +++ b/server/product/internal/logic/homepagerecommendproductlistlogic.go @@ -2,7 +2,6 @@ package logic import ( "errors" - "fmt" "fusenapi/model/gmodel" "fusenapi/utils/auth" "fusenapi/utils/basic" @@ -83,7 +82,6 @@ func (l *HomePageRecommendProductListLogic) HomePageRecommendProductList(req *ty if len(recommendProductList) == 0 { return resp.SetStatusWithMessage(basic.CodeOK, "success", []interface{}{}) } - fmt.Println(recommendProductList) productIds := make([]int64, 0, len(recommendProductList)) for _, product := range recommendProductList { productIds = append(productIds, product.Id)