From a86a24ca3415ab90c32fc76dec70804557e7113c Mon Sep 17 00:00:00 2001 From: Klaus Date: Fri, 3 Oct 2025 01:46:52 +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 --- .../kr/co/vividnext/sodalive/can/charge/ChargeService.kt | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/main/kotlin/kr/co/vividnext/sodalive/can/charge/ChargeService.kt b/src/main/kotlin/kr/co/vividnext/sodalive/can/charge/ChargeService.kt index f716c1b..f86ed51 100644 --- a/src/main/kotlin/kr/co/vividnext/sodalive/can/charge/ChargeService.kt +++ b/src/main/kotlin/kr/co/vividnext/sodalive/can/charge/ChargeService.kt @@ -343,9 +343,7 @@ class ChargeService( } val body = response.body?.string() ?: throw SodaException("결제정보에 오류가 있습니다.") - println(body) val verifyResponse = objectMapper.readValue(body, PayverseVerifyResponse::class.java) - println(verifyResponse) val customerId = "${serverEnv}_user_${member.id!!}" val isSuccess = verifyResponse.resultStatus == "SUCCESS" && @@ -354,7 +352,6 @@ class ChargeService( verifyResponse.productName == charge.title && verifyResponse.customerId == customerId && verifyResponse.requestAmount.compareTo(charge.can!!.price) == 0 - println(isSuccess) if (isSuccess) { // verify 함수의 232~248 라인과 동일 처리