Fix log tags in trackball debugging

Change-Id: I02a623c96aff8b6ffbe11161feea39ad26ba0e83
This commit is contained in:
Michael Wright
2013-03-20 18:05:30 -07:00
committed by Android (Google) Code Review
parent 320a31c604
commit 53d13667e3

View File

@@ -3562,7 +3562,7 @@ public final class ViewRootImpl implements ViewParent,
+ " accelMovement=" + accelMovement
+ " accel=" + accel);
if (accelMovement > movement) {
if (DEBUG_TRACKBALL) Log.v("foo", "Delivering fake DPAD: "
if (DEBUG_TRACKBALL) Log.v(TAG, "Delivering fake DPAD: "
+ keycode);
movement--;
int repeatCount = accelMovement - movement;
@@ -3572,7 +3572,7 @@ public final class ViewRootImpl implements ViewParent,
InputDevice.SOURCE_KEYBOARD));
}
while (movement > 0) {
if (DEBUG_TRACKBALL) Log.v("foo", "Delivering fake DPAD: "
if (DEBUG_TRACKBALL) Log.v(TAG, "Delivering fake DPAD: "
+ keycode);
movement--;
curTime = SystemClock.uptimeMillis();