Reduce log spam in TimeSparseArray
Change-Id: I8574f9e84be4e27be3946ed361475691d6ea03e0 Fixes: 77587733 Test: Build, excersize elfin device, monitor for logspam
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user