From cc9e4f974f80693eeec9f5453232c9a0da2c3720 Mon Sep 17 00:00:00 2001 From: Klaus Date: Tue, 12 Aug 2025 17:38:45 +0900 Subject: [PATCH] =?UTF-8?q?=EC=BA=90=EB=A6=AD=ED=84=B0=20Controller=20-=20?= =?UTF-8?q?exception=20print?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../admin/chat/character/AdminChatCharacterController.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/kotlin/kr/co/vividnext/sodalive/admin/chat/character/AdminChatCharacterController.kt b/src/main/kotlin/kr/co/vividnext/sodalive/admin/chat/character/AdminChatCharacterController.kt index dca6acd..6d9b88c 100644 --- a/src/main/kotlin/kr/co/vividnext/sodalive/admin/chat/character/AdminChatCharacterController.kt +++ b/src/main/kotlin/kr/co/vividnext/sodalive/admin/chat/character/AdminChatCharacterController.kt @@ -392,7 +392,8 @@ class AdminChatCharacterController( if (!apiResponse.success) { throw SodaException(apiResponse.message ?: "수정에 실패했습니다. 다시 시도해 주세요.") } - } catch (_: Exception) { + } catch (e: Exception) { + e.printStackTrace() throw SodaException("수정에 실패했습니다. 다시 시도해 주세요.") } }