We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb1283e commit 14c8880Copy full SHA for 14c8880
src/main/kotlin/distribution/FCMNotifier.kt
@@ -48,6 +48,7 @@ internal object FCMNotifier : Notifier {
48
override fun notify(topic: String, type: EntityTypes<*>, id: Int) {
49
// Run only if the app is initialized
50
if (this::app.isInitialized) {
51
+ Logger.info("Sending push notification to $topic... Type: ${type.name}, ID: $id")
52
val message = Message.builder()
53
.setTopic(topic)
54
.putData(DATA_TYPE, type.name)
0 commit comments