Reduce log spam in TimeSparseArray

Change-Id: I8574f9e84be4e27be3946ed361475691d6ea03e0
Fixes: 77587733
Test: Build, excersize elfin device, monitor for logspam
This commit is contained in:
Daniel Cardenas
2018-04-04 12:21:04 -07:00
parent 232efa8ce7
commit 8664e95613

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);
}