Merge "Only actually log the DNS events we have." into nyc-dev
am: cb98809657
* commit 'cb988096570de8af4883ae3bdea06c88f8fd235a':
Only actually log the DNS events we have.
Change-Id: I6fa83369e45fbf0a33c0519cc47e5d3f21321463
This commit is contained in:
@@ -78,9 +78,11 @@ public class DnsEventListenerService extends IDnsEventListener.Stub {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Only log as many events as we actually have.
|
||||||
|
byte[] eventTypes = Arrays.copyOf(mEventTypes, mEventCount);
|
||||||
byte[] returnCodes = Arrays.copyOf(mReturnCodes, mEventCount);
|
byte[] returnCodes = Arrays.copyOf(mReturnCodes, mEventCount);
|
||||||
int[] latenciesMs = Arrays.copyOf(mLatenciesMs, 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));
|
maybeLog(String.format("Logging %d results for netId %d", mEventCount, mNetId));
|
||||||
mEventCount = 0;
|
mEventCount = 0;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user