diff options
| -rw-r--r-- | libs/binder/IPCThreadState.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/binder/IPCThreadState.cpp b/libs/binder/IPCThreadState.cpp index c9f688fcce..02b4232257 100644 --- a/libs/binder/IPCThreadState.cpp +++ b/libs/binder/IPCThreadState.cpp @@ -666,7 +666,7 @@ status_t IPCThreadState::attemptIncStrongHandle(int32_t handle) waitForResponse(NULL, &result); #if LOG_REFCOUNTS - printf("IPCThreadState::attemptIncStrongHandle(%ld) = %s\n", + ALOGV("IPCThreadState::attemptIncStrongHandle(%ld) = %s\n", handle, result == NO_ERROR ? "SUCCESS" : "FAILURE"); #endif @@ -681,7 +681,7 @@ status_t IPCThreadState::attemptIncStrongHandle(int32_t handle) void IPCThreadState::expungeHandle(int32_t handle, IBinder* binder) { #if LOG_REFCOUNTS - printf("IPCThreadState::expungeHandle(%ld)\n", handle); + ALOGV("IPCThreadState::expungeHandle(%ld)\n", handle); #endif self()->mProcess->expungeHandle(handle, binder); } @@ -1168,7 +1168,7 @@ status_t IPCThreadState::executeCommand(int32_t cmd) break; default: - printf("*** BAD COMMAND %d received from Binder driver\n", cmd); + ALOGE("*** BAD COMMAND %d received from Binder driver\n", cmd); result = UNKNOWN_ERROR; break; } |