Skip to content

Commit

Permalink
Merge pull request #22 from marinesnow34/test
Browse files Browse the repository at this point in the history
Fix: System.out 삭제
  • Loading branch information
marinesnow34 authored Dec 3, 2023
2 parents 2a3e765 + 24e3fe7 commit a1e342f
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 a1e342f

Please sign in to comment.