사용하지 않는 print 제거

This commit is contained in:
2025-10-02 12:20:25 +09:00
parent e45fe1bf10
commit fb0a9e98a1

View File

@@ -18,7 +18,6 @@ class CanController(private val service: CanService) {
@GetMapping
fun getCans(request: HttpServletRequest): ApiResponse<List<CanResponse>> {
val geoCountry = request.getAttribute("geoCountry") as? GeoCountry ?: GeoCountry.OTHER
println("geoCountry: $geoCountry")
return ApiResponse.ok(service.getCans(geoCountry))
}