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

Commit 8664e956 authored by Daniel Cardenas's avatar Daniel Cardenas
Browse files

Reduce log spam in TimeSparseArray

Change-Id: I8574f9e84be4e27be3946ed361475691d6ea03e0
Fixes: 77587733
Test: Build, excersize elfin device, monitor for logspam
parent 232efa8c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);
            }