Increase log coverage for processing backup refresh and credential submission.

This commit is contained in:
Alex Hart
2025-07-23 12:49:06 -03:00
committed by Michelle Tang
parent 16776ad843
commit 8ed34fb4a0
2 changed files with 4 additions and 1 deletions

View File

@@ -49,6 +49,8 @@ class BackupRefreshJob private constructor(
.build()
)
)
} else {
Log.i(TAG, "Do not need to refresh backups. Last refresh: ${lastCheckIn.inWholeMilliseconds}")
}
}

View File

@@ -190,9 +190,10 @@ class InAppPaymentRecurringContextJob private constructor(
}
if (hasEntitlementAlready(updatedInAppPayment, subscription.endOfCurrentPeriod)) {
info("Already have entitlement for this badge. Marking complete.")
info("Already have entitlement for this InAppPayment of type ${updatedInAppPayment.type}. Marking complete.")
markInAppPaymentCompleted(updatedInAppPayment, subscription)
} else {
info("No entitlement for InAppPayment of type ${updatedInAppPayment.type}. Submitting and validating credentials.")
submitAndValidateCredentials(updatedInAppPayment, subscription, requestContext)
}
}