Feat: 응답 이미지 확인을 위한 로깅

This commit is contained in:
김용수 2024-10-03 01:13:43 +09:00
parent df452c9c14
commit 28df0a65db

View File

@ -191,10 +191,12 @@ public class ProjectService {
AiModel aiModel = getAiModel(request);
AutoLabelingRequest autoLabelingRequest = AutoLabelingRequest.of(projectId, aiModel.getModelKey(), labelMap, imageRequestList);
log.debug("요청 {}", autoLabelingRequest);
log.debug("요청 이미지 개수 :{}", imageRequestList.size());
List<AutoLabelingResult> list = aiService.postRequest(endPoint, autoLabelingRequest, List.class, this::converter);
saveAutoLabelList(list);
log.debug("응답 이미지 개수 :{}", list.size());
alarmService.save(memberId, Alarm.AlarmType.PREDICT);
} finally {