diff options
Diffstat (limited to 'services/jni')
-rw-r--r-- | services/jni/com_android_server_InputManager.cpp | 4 | ||||
-rw-r--r-- | services/jni/com_android_server_VibratorService.cpp | 4 |
2 files changed, 4 insertions, 4 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 diff --git a/services/jni/com_android_server_VibratorService.cpp b/services/jni/com_android_server_VibratorService.cpp index 0912d43..2b3f74a 100644 --- a/services/jni/com_android_server_VibratorService.cpp +++ b/services/jni/com_android_server_VibratorService.cpp @@ -36,13 +36,13 @@ static jboolean vibratorExists(JNIEnv *env, jobject clazz) static void vibratorOn(JNIEnv *env, jobject clazz, jlong timeout_ms) { - // LOGI("vibratorOn\n"); + // ALOGI("vibratorOn\n"); vibrator_on(timeout_ms); } static void vibratorOff(JNIEnv *env, jobject clazz) { - // LOGI("vibratorOff\n"); + // ALOGI("vibratorOff\n"); vibrator_off(); } |