Skip to content

Commit ef26e7e

Browse files
committed
[MS-TEST] Test: log 출력
1 parent 46abfe5 commit ef26e7e

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/main/java/com/modutaxi/api/common/fcm/FcmService.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,10 @@ public void send(Message message) {
7676
log.info("FCM 메시지: " + fcmMessageJson);
7777
} catch (FirebaseException e) {
7878
log.error(ChatErrorCode.FAIL_SEND_MESSAGE.getMessage());
79+
log.error("message: {}", e.getMessage());
80+
log.error("localizedMessage: {}", e.getLocalizedMessage());
81+
log.error("cause: {}", e.getCause().getMessage());
82+
log.error("message: {}", message.toString());
7983
// throw new BaseException(ChatErrorCode.FAIL_SEND_MESSAGE);
8084
}
8185
}

0 commit comments

Comments
 (0)