실태조사 적합여부 log 추가

This commit is contained in:
2026-03-12 08:33:48 +09:00
parent 0d03a8d967
commit 66696efc42
11 changed files with 6 additions and 4 deletions

View File

@@ -110,10 +110,12 @@ public class GukYuinApiStbltJobService {
RlbDtctDto result = gukYuinApiService.findRlbDtctList(uid, targetDate, "Y");
long apiEnd = System.currentTimeMillis();
try {
log.info("[Step 3-2] API result JSON : {}", objectMapper.writeValueAsString(result));
} catch (Exception e) {
log.error("result json convert error", e);
if (result != null) {
log.info(
"[Step 3-2] API result code={}, message={}, resultSize={}",
result.getCode(),
result.getMessage(),
result.getResult() == null ? 0 : result.getResult().size());
}
int resultSize =