File tree Expand file tree Collapse file tree 1 file changed +0
-5
lines changed
src/main/kotlin/com/dh/baro/product/presentation Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ import com.dh.baro.product.application.ProductFacade
1010import com.dh.baro.product.presentation.dto.*
1111import com.dh.baro.product.presentation.swagger.ProductSwagger
1212import jakarta.validation.Valid
13- import org.slf4j.LoggerFactory
1413import org.springframework.http.HttpStatus
1514import org.springframework.web.bind.annotation.*
1615
@@ -20,8 +19,6 @@ class ProductController(
2019 private val productFacade : ProductFacade ,
2120) : ProductSwagger {
2221
23- private val log = LoggerFactory .getLogger(javaClass)
24-
2522 @PostMapping
2623 @ResponseStatus(HttpStatus .CREATED )
2724 @CheckAuth(UserRole .STORE_OWNER )
@@ -52,8 +49,6 @@ class ProductController(
5249 @RequestParam(required = false ) cursorLikes : Int? ,
5350 @RequestParam(defaultValue = DEFAULT_PAGE_SIZE ) size : Int ,
5451 ): SliceResponse <ProductListItem > {
55- log.info(" getPopularProducts - userId: {}" , userId)
56-
5752 if ((cursorId == null ) xor (cursorLikes == null ))
5853 throw IllegalArgumentException (ErrorMessage .INVALID_POPULAR_PRODUCT_CURSOR .message)
5954
You can’t perform that action at this time.
0 commit comments