Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: fcm 메시지 전송 실패 로그 출력 #313

Merged
merged 1 commit into from
Sep 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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