Skip to content

Commit

Permalink
Merge pull request #313 from Modagbul/hotfix
Browse files Browse the repository at this point in the history
fix: fcm 메시지 전송 실패 로그 출력
  • Loading branch information
seungueonn authored Sep 11, 2024
2 parents 7ee3c0b + 7d08e95 commit 5b3dc87
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ public static NotificationException handleFirebaseMessagingException(FirebaseMes
case "UNAVAILABLE":
return new NotificationException("서비스를 사용할 수 없습니다: " + errorMessage);
default:
e.printStackTrace();
return new NotificationException("메시지 전송에 실패했습니다: " + errorMessage);
}
}
Expand Down

0 comments on commit 5b3dc87

Please sign in to comment.