diff --git a/src/main/java/org/whispersystems/textsecuregcm/push/RetryingApnsClient.java b/src/main/java/org/whispersystems/textsecuregcm/push/RetryingApnsClient.java index 00f0cf75f..7e97b95ff 100644 --- a/src/main/java/org/whispersystems/textsecuregcm/push/RetryingApnsClient.java +++ b/src/main/java/org/whispersystems/textsecuregcm/push/RetryingApnsClient.java @@ -141,8 +141,10 @@ public class RetryingApnsClient { } } catch (InterruptedException e) { + logger.warn("Interrupted exception", e); future.setException(e); } catch (ExecutionException e) { + logger.warn("Execution exception", e); if (e.getCause() instanceof ClientNotConnectedException) setDisconnected(e.getCause()); else future.setException(e.getCause()); }