Merge "Reduce log spam in TimeSparseArray" into pi-dev

This commit is contained in:
TreeHugger Robot
2018-04-05 18:01:52 +00:00
committed by Android (Google) Code Review

View File

@@ -88,7 +88,7 @@ public class TimeSparseArray<E> extends LongSparseArray<E> {
key++;
keyIndex++;
}
if (key >= origKey + 10) {
if (key >= origKey + 100) {
Slog.w(TAG, "Value " + value + " supposed to be inserted at " + origKey
+ " displaced to " + key);
}