Add logging for when we do nothing during a keep-alive job.

This commit is contained in:
Alex Hart 2022-03-30 12:46:54 -03:00 committed by Cody Henthorne
parent 7aeb641036
commit 116e711f1a

View file

@ -109,7 +109,10 @@ public class SubscriptionKeepAliveJob extends BaseJob {
true); true);
SubscriptionReceiptRequestResponseJob.createSubscriptionContinuationJobChain(true).enqueue(); SubscriptionReceiptRequestResponseJob.createSubscriptionContinuationJobChain(true).enqueue();
return;
} }
Log.i(TAG, "Subscription is active, and end of current period (remote) is after the latest checked end of period (local). Nothing to do.");
} }
private <T> void verifyResponse(@NonNull ServiceResponse<T> response) throws Exception { private <T> void verifyResponse(@NonNull ServiceResponse<T> response) throws Exception {