Fix dispatcher crash when input monitoring enabled.
Also ensure that we actually log assertion failures. Bug: 4203092 Change-Id: I5c14bc41b2255f876858121f5572e2de75cabcc3
This commit is contained in:
parent
02988ec716
commit
23e0c8c1a1
@ -724,7 +724,7 @@ void VelocityTracker::addMovement(nsecs_t eventTime, BitSet32 idBits, const Posi
|
|||||||
LOGD(" %d: position (%0.3f, %0.3f), vx=%0.3f, vy=%0.3f, speed=%0.3f",
|
LOGD(" %d: position (%0.3f, %0.3f), vx=%0.3f, vy=%0.3f, speed=%0.3f",
|
||||||
id, positions[index].x, positions[index].y, vx, vy, sqrtf(vx * vx + vy * vy));
|
id, positions[index].x, positions[index].y, vx, vy, sqrtf(vx * vx + vy * vy));
|
||||||
} else {
|
} else {
|
||||||
assert(vx == 0 && vy == 0);
|
LOG_ASSERT(vx == 0 && vy == 0);
|
||||||
LOGD(" %d: position (%0.3f, %0.3f), velocity not available",
|
LOGD(" %d: position (%0.3f, %0.3f), velocity not available",
|
||||||
id, positions[index].x, positions[index].y);
|
id, positions[index].x, positions[index].y);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user