From 5bd7912608bfd5b53f759cc8c19310985b2397c9 Mon Sep 17 00:00:00 2001 From: KimTaeO Date: Sat, 21 Oct 2023 23:08:58 +0900 Subject: [PATCH] =?UTF-8?q?update=20::=20=EC=97=90=EB=9F=AC=20=EB=A1=9C?= =?UTF-8?q?=EA=B7=B8=EC=97=90=20id=EC=B6=94=EA=B0=80=20=EB=B0=8F=20name=20?= =?UTF-8?q?->=20username?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../msg/domain/student/service/StudentActivityServiceImpl.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bitgouel-api/src/main/kotlin/team/msg/domain/student/service/StudentActivityServiceImpl.kt b/bitgouel-api/src/main/kotlin/team/msg/domain/student/service/StudentActivityServiceImpl.kt index 5041d5ebd..646688e58 100644 --- a/bitgouel-api/src/main/kotlin/team/msg/domain/student/service/StudentActivityServiceImpl.kt +++ b/bitgouel-api/src/main/kotlin/team/msg/domain/student/service/StudentActivityServiceImpl.kt @@ -61,7 +61,7 @@ class StudentActivityServiceImpl( val user = userUtil.queryCurrentUser() val student = studentRepository.findByUser(user) - ?: throw StudentNotFoundException("학생을 찾을 수 없습니다. info : [ name = ${user.name} ]") + ?: throw StudentNotFoundException("학생을 찾을 수 없습니다. info : [ id = ${user.id}, username = ${user.name} ]") val studentActivity = studentActivityRepository.findByIdAndStudent(id, student) ?: throw StudentActivityNotFoundException("학생 활동을 찾을 수 없습니다. info : [ id = $id ]")