diff options
| author | 2012-01-19 17:26:08 -0800 | |
|---|---|---|
| committer | 2012-01-19 17:26:08 -0800 | |
| commit | f3f650db96d40014a0203393c585c368b0dd7a9a (patch) | |
| tree | 7a70859dd347a8240ee02e950ea2eb1a1dad76e5 /services/input/InputManager.cpp | |
| parent | 08d3c6e5ba5c3e5fcc386b07efa709325d45b9ff (diff) | |
| parent | a826f9e2c4f6329d8d48c927f6e942e78ffaf92f (diff) | |
am a826f9e2: Merge "Rename (IF_)LOGW(_IF) to (IF_)ALOGW(_IF)"
* commit 'a826f9e2c4f6329d8d48c927f6e942e78ffaf92f':
Rename (IF_)LOGW(_IF) to (IF_)ALOGW(_IF)
Diffstat (limited to 'services/input/InputManager.cpp')
| -rw-r--r-- | services/input/InputManager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/services/input/InputManager.cpp b/services/input/InputManager.cpp index 5dfa5d5930d8..29c5884900d2 100644 --- a/services/input/InputManager.cpp +++ b/services/input/InputManager.cpp @@ -71,12 +71,12 @@ status_t InputManager::start() { status_t InputManager::stop() { status_t result = mReaderThread->requestExitAndWait(); if (result) { - LOGW("Could not stop InputReader thread due to error %d.", result); + ALOGW("Could not stop InputReader thread due to error %d.", result); } result = mDispatcherThread->requestExitAndWait(); if (result) { - LOGW("Could not stop InputDispatcher thread due to error %d.", result); + ALOGW("Could not stop InputDispatcher thread due to error %d.", result); } return OK; |