Skip to content

Commit

Permalink
refactor: 테스트에 필요치 않은 로깅 주석 처리
Browse files Browse the repository at this point in the history
  • Loading branch information
bflykky committed Aug 27, 2024
1 parent d2f88c7 commit a353f52
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public ResultResponse<PhotoUploadInfo> uploadPhotoList(@Valid @RequestBody Photo
long startTime = System.currentTimeMillis();
PhotoUploadInfo photoUploadInfo = photoService.uploadPhotoList(request, member);
long finishTime = System.currentTimeMillis();
log.info("PhotoServiceImpl.uploadPhotoList() 수행 시간: {} ms", finishTime - startTime);
// log.info("PhotoServiceImpl.uploadPhotoList() 수행 시간: {} ms", finishTime - startTime);
return ResultResponse.of(UPLOAD_PHOTO, photoUploadInfo);
}

Expand Down

0 comments on commit a353f52

Please sign in to comment.