portowyi 1 년 전
부모
커밋
36a587405e
1개의 변경된 파일0개의 추가작업 그리고 3개의 파일을 삭제
  1. 0 3
      controller/products.go

+ 0 - 3
controller/products.go

@@ -2,7 +2,6 @@ package controller
 
 import (
 	"kng_feed_api/model"
-	"log"
 	"net/http"
 
 	"github.com/gin-gonic/gin"
@@ -12,8 +11,6 @@ func LoadProductsInfo(context *gin.Context) {
 	var products model.ProductsArray
 	err := context.ShouldBindJSON(&products)
 
-	log.Println(products)
-
 	if err != nil {
 		context.JSON(http.StatusBadRequest, gin.H{"error": err.Error()})
 		return