Skip to content

Commit

Permalink
feat: #191 APNs 발송 실패시 작성 로그레벨 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
jaewonLeeKOR committed Sep 29, 2024
1 parent f26487a commit d34a73c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public <T> Boolean sendApns(T request, List<String> deviceToken) {
.retrieve()
.bodyToMono(Void.class)
.subscribe();
log.info("APNs 전송 거절 발생");
log.error("APNs 전송 거절 발생");
})
.doOnError(e -> { // 에러 발생 시 보조 채널로 재시도
tmpSubWebClient
Expand All @@ -83,7 +83,7 @@ public <T> Boolean sendApns(T request, List<String> deviceToken) {
.retrieve()
.bodyToMono(Void.class)
.subscribe();
log.error("APNs 전송 중 오류 발생", e);
log.warn("APNs 전송 중 오류 발생", e);
})
.subscribe();
});
Expand Down

0 comments on commit d34a73c

Please sign in to comment.