Skip to content

Commit

Permalink
[ARV-13] style: log 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
tnals2384 committed Nov 20, 2024
1 parent 17825ae commit 2dd8a73
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public void fetchConcertInfoList() {
});

return Mono.when(concertDetails)
.doOnTerminate(() -> log.info("All concert details processed for hallId: {}", hallId));
.doOnTerminate(() -> log.info("All concert details processed for hall Code: {}", hallId));
})
.subscribe(); // 비동기적으로 처리 시작
});
Expand Down Expand Up @@ -76,7 +76,7 @@ public void fetchDailyConcertInfoList() {
});

return Mono.when(concertDetails)
.doOnTerminate(() -> log.info("All concert details processed for hallId: {}", hallId));
.doOnTerminate(() -> log.info("All concert details processed for hall Code: {}", hallId));
})
.subscribe(); // 비동기적으로 처리 시작
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public void fetchConcertHallInfoList() {
KopisHallResponse response = kopisHallService.fetchConcertHallDetail(hallId).block();
if (response != null)
concertHallRepository.save(KopisHallResponse.toEntity(response));
log.info("hall detail fetch complete for hallId: {}", hallId);
log.info("hall detail fetch complete for hall Code: {}", hallId);
});
log.info("All hall detail fetch complete");
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public Mono<KopisHallResponse> fetchConcertHallDetail(final String hallId) {
JsonNode node = rootNode.path("db");
return toKopisConcertHallResponse(hallId, node);
} catch (Exception e) {
log.error("Can't fetch hallId detail: hallId {}", hallId);
log.error("Can't fetch hall Code detail: hall Code {}", hallId);
log.error("Error Message: {}", e.getMessage());
return null;
}
Expand Down

0 comments on commit 2dd8a73

Please sign in to comment.