diff options
Diffstat (limited to 'services/jni/com_android_server_InputManager.cpp')
-rw-r--r-- | services/jni/com_android_server_InputManager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/services/jni/com_android_server_InputManager.cpp b/services/jni/com_android_server_InputManager.cpp index 145f713..b8b5d77 100644 --- a/services/jni/com_android_server_InputManager.cpp +++ b/services/jni/com_android_server_InputManager.cpp @@ -686,7 +686,7 @@ void NativeInputManager::setPointerSpeed(int32_t speed) { return; } - LOGI("Setting pointer speed to %d.", speed); + ALOGI("Setting pointer speed to %d.", speed); mLocked.pointerSpeed = speed; } // release lock @@ -702,7 +702,7 @@ void NativeInputManager::setShowTouches(bool enabled) { return; } - LOGI("Setting show touches feature to %s.", enabled ? "enabled" : "disabled"); + ALOGI("Setting show touches feature to %s.", enabled ? "enabled" : "disabled"); mLocked.showTouches = enabled; } // release lock |