diff options
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 5dfa5d5..29c5884 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; |