Skip to content

Commit f4e93e6

Browse files
committed
remove: 에러 테스트용 로그 제거
1 parent 119457b commit f4e93e6

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/main/kotlin/com/dh/baro/product/presentation/ProductController.kt

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ import com.dh.baro.product.application.ProductFacade
1010
import com.dh.baro.product.presentation.dto.*
1111
import com.dh.baro.product.presentation.swagger.ProductSwagger
1212
import jakarta.validation.Valid
13-
import org.slf4j.LoggerFactory
1413
import org.springframework.http.HttpStatus
1514
import 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

0 commit comments

Comments
 (0)