Skip to content

Commit

Permalink
HotFix : 로그 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
ywj9811 committed Feb 26, 2025
1 parent 97d3983 commit 9231ba3
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ public void saveTeacherProfile(List<MultipartFile> profiles) {
String[] split = fileName.split("_");
String name = split[0];
String nickName = split[1];
log.info("name : {} nickName : {}", name, nickName);
Teacher teacher = teacherGetService.byNameAndNickName(name, nickName);
String profileUrl = s3UploadService.saveProfileFile(profile);
teacherUpdateService.updateProfile(teacher, profileUrl);
Expand Down

0 comments on commit 9231ba3

Please sign in to comment.