From fb0a9e98a17e0dc261ec96b048bf8b9cc30831a1 Mon Sep 17 00:00:00 2001 From: Klaus Date: Thu, 2 Oct 2025 12:20:25 +0900 Subject: [PATCH] =?UTF-8?q?=EC=82=AC=EC=9A=A9=ED=95=98=EC=A7=80=20?= =?UTF-8?q?=EC=95=8A=EB=8A=94=20print=20=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/kotlin/kr/co/vividnext/sodalive/can/CanController.kt | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main/kotlin/kr/co/vividnext/sodalive/can/CanController.kt b/src/main/kotlin/kr/co/vividnext/sodalive/can/CanController.kt index 3ec4ef4..e002aba 100644 --- a/src/main/kotlin/kr/co/vividnext/sodalive/can/CanController.kt +++ b/src/main/kotlin/kr/co/vividnext/sodalive/can/CanController.kt @@ -18,7 +18,6 @@ class CanController(private val service: CanService) { @GetMapping fun getCans(request: HttpServletRequest): ApiResponse> { val geoCountry = request.getAttribute("geoCountry") as? GeoCountry ?: GeoCountry.OTHER - println("geoCountry: $geoCountry") return ApiResponse.ok(service.getCans(geoCountry)) }