Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4ffe8114 authored by Lorenzo Colitti's avatar Lorenzo Colitti Committed by android-build-merger
Browse files

Merge "Only actually log the DNS events we have." into nyc-dev am: cb988096

am: d755f9b8

* commit 'd755f9b8':
  Only actually log the DNS events we have.

Change-Id: I265934c939ed4e3f516f876ba4f0c4fe0f67ff55
parents 343301a6 d755f9b8
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -78,9 +78,11 @@ public class DnsEventListenerService extends IDnsEventListener.Stub {
                return;
            }

            // Only log as many events as we actually have.
            byte[] eventTypes = Arrays.copyOf(mEventTypes, mEventCount);
            byte[] returnCodes = Arrays.copyOf(mReturnCodes, mEventCount);
            int[] latenciesMs = Arrays.copyOf(mLatenciesMs, mEventCount);
            DnsEvent.logEvent(mNetId, mEventTypes, mReturnCodes, mLatenciesMs);
            DnsEvent.logEvent(mNetId, eventTypes, returnCodes, latenciesMs);
            maybeLog(String.format("Logging %d results for netId %d", mEventCount, mNetId));
            mEventCount = 0;
        }