Log the reason for skipping the broadcast delivery.

Bug: 286616337
Test: manual
Change-Id: I46ad35b5768c878f471413e02d24b64015b323e0
This commit is contained in:
Sudheer Shanka
2023-06-09 11:50:24 -07:00
parent 7b4ea8e2a3
commit b6805f98ca

View File

@@ -682,10 +682,10 @@ class BroadcastQueueModernImpl extends BroadcastQueue {
// If this receiver is going to be skipped, skip it now itself and don't even enqueue
// it.
final boolean wouldBeSkipped = (mSkipPolicy.shouldSkipMessage(r, receiver) != null);
if (wouldBeSkipped) {
final String skipReason = mSkipPolicy.shouldSkipMessage(r, receiver);
if (skipReason != null) {
setDeliveryState(null, null, r, i, receiver, BroadcastRecord.DELIVERY_SKIPPED,
"skipped by policy at enqueue");
"skipped by policy at enqueue: " + skipReason);
continue;
}