diff --git a/ring-android/app/src/withFirebase/java/cx/ring/application/JamiApplicationFirebase.java b/ring-android/app/src/withFirebase/java/cx/ring/application/JamiApplicationFirebase.java index 1c13788913e315d993906c77b7b211e5eaf9eec2..73a6dd087e1c6dd587e78f20e23d541be0f30e18 100644 --- a/ring-android/app/src/withFirebase/java/cx/ring/application/JamiApplicationFirebase.java +++ b/ring-android/app/src/withFirebase/java/cx/ring/application/JamiApplicationFirebase.java @@ -52,7 +52,7 @@ public class JamiApplicationFirebase extends JamiApplication { } public void setPushToken(String token) { - Log.d(TAG, "setPushToken: " + token); + // Log.d(TAG, "setPushToken: " + token); pushToken = token; if (mAccountService != null && mPreferencesService != null) { if (mPreferencesService.getSettings().isAllowPushNotifications()) { @@ -62,7 +62,7 @@ public class JamiApplicationFirebase extends JamiApplication { } public void onMessageReceived(RemoteMessage remoteMessage) { - Log.d(TAG, "onMessageReceived: " + remoteMessage.getFrom()); + // Log.d(TAG, "onMessageReceived: " + remoteMessage.getFrom()); if (mAccountService != null) mAccountService.pushNotificationReceived(remoteMessage.getFrom(), remoteMessage.getData()); }