Skip to content

Commit

Permalink
Fix: System.out 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
marinesnow34 committed Dec 3, 2023
1 parent 0f9d69a commit 24e3fe7
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -172,10 +172,9 @@ private void sendMessage(KakaoOption kakaoOption, HashMap<String, String> variab
messageService.send(message);
} catch (NurigoMessageNotReceivedException exception) {
// 발송에 실패한 메시지 목록을 확인할 수 있습니다!
System.out.println(exception.getFailedMessageList());
System.out.println(exception.getMessage());
log.error(exception.getFailedMessageList());
} catch (Exception exception) {
System.out.println(exception.getMessage());
// System.out.println(exception.getMessage());
}
}

Expand Down Expand Up @@ -244,7 +243,7 @@ private TosspaymentDto requestTossPaymentCancel(String paymentKey, String reject
new HttpEntity<>(params, headers),
TosspaymentDto.class);
} catch (Exception e) {
System.out.println("e.getMessage() = " + e.getMessage());
log.error("e.getMessage() = " + e.getMessage());
throw new BusinessLogicException(ExceptionCode.TOSS_PAYMENT_SUCCESS_FAIL);
}
}
Expand Down

0 comments on commit 24e3fe7

Please sign in to comment.