From 26bcb590a7a32159a09e289a6170db15ea0860e7 Mon Sep 17 00:00:00 2001 From: Moxie Marlinspike Date: Thu, 11 Jun 2015 09:43:34 -0700 Subject: [PATCH] Log retrieve exception. // FREEBIE --- .../thoughtcrime/securesms/jobs/PushNotificationReceiveJob.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/org/thoughtcrime/securesms/jobs/PushNotificationReceiveJob.java b/src/org/thoughtcrime/securesms/jobs/PushNotificationReceiveJob.java index 417fa89b35..f27d1bf683 100644 --- a/src/org/thoughtcrime/securesms/jobs/PushNotificationReceiveJob.java +++ b/src/org/thoughtcrime/securesms/jobs/PushNotificationReceiveJob.java @@ -43,6 +43,7 @@ public class PushNotificationReceiveJob extends PushReceivedJob implements Injec @Override public boolean onShouldRetry(Exception e) { + Log.w(TAG, e); return e instanceof PushNetworkException; }