diff options
author | Steve Block <steveblock@google.com> | 2012-01-04 20:05:49 +0000 |
---|---|---|
committer | Steve Block <steveblock@google.com> | 2012-01-04 20:05:49 +0000 |
commit | 6215d3ff4b5dfa52a5d8b9a42e343051f31066a5 (patch) | |
tree | fa31802ed64676368447b67d20567fc1e806c79d /services/jni/com_android_server_InputManager.cpp | |
parent | c9c76a82c6d0bf2362044d899013832882f32c94 (diff) | |
download | frameworks_base-6215d3ff4b5dfa52a5d8b9a42e343051f31066a5.zip frameworks_base-6215d3ff4b5dfa52a5d8b9a42e343051f31066a5.tar.gz frameworks_base-6215d3ff4b5dfa52a5d8b9a42e343051f31066a5.tar.bz2 |
Rename (IF_)LOGI(_IF) to (IF_)ALOGI(_IF) DO NOT MERGE
See https://android-git.corp.google.com/g/156801
Bug: 5449033
Change-Id: Ib08fe86d23db91ee153e9f91a99a35c42b9208ea
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 |