diff options
| -rw-r--r-- | services/core/java/com/android/server/location/contexthub/ContextHubService.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/services/core/java/com/android/server/location/contexthub/ContextHubService.java b/services/core/java/com/android/server/location/contexthub/ContextHubService.java index a2f194266a6e..17f8abe14ea0 100644 --- a/services/core/java/com/android/server/location/contexthub/ContextHubService.java +++ b/services/core/java/com/android/server/location/contexthub/ContextHubService.java @@ -335,6 +335,10 @@ public class ContextHubService extends IContextHubService.Stub { if (Flags.reliableMessageDuplicateDetectionService() && didEventHappen(MESSAGE_DUPLICATION_PROBABILITY_PERCENT)) { + Log.i(TAG, "[TEST MODE] Duplicating message (" + + NUM_MESSAGES_TO_DUPLICATE + + " sends) with message sequence number: " + + message.getMessageSequenceNumber()); for (int i = 0; i < NUM_MESSAGES_TO_DUPLICATE; ++i) { handleClientMessageCallback(contextHubId, hostEndpointId, message, nanoappPermissions, messagePermissions); |