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("수정에 실패했습니다. 다시 시도해 주세요.") } }