summaryrefslogtreecommitdiff
path: root/libs/binder/ProcessState.cpp
diff options
context:
space:
mode:
author Jean-Baptiste Queru <jbq@google.com> 2012-01-19 17:20:58 -0800
committer Android Git Automerger <android-git-automerger@android.com> 2012-01-19 17:20:58 -0800
commitd6b5584b67f8a2f3d8ea20d748652673d5761e33 (patch)
treee5ada3e1f246c08651a7f20738ffa5aeee954ab8 /libs/binder/ProcessState.cpp
parentfd266b36826aa6dd8cd3fa00c159a094423899fb (diff)
parent97aa8ee81198234aedffceaf71ad216b96323393 (diff)
am 97aa8ee8: Merge ee4618bc
* commit '97aa8ee81198234aedffceaf71ad216b96323393': Rename (IF_)LOGV(_IF) to (IF_)ALOGV(_IF)
Diffstat (limited to 'libs/binder/ProcessState.cpp')
-rw-r--r--libs/binder/ProcessState.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/binder/ProcessState.cpp b/libs/binder/ProcessState.cpp
index f5288c8c3ead..f06a59ea6656 100644
--- a/libs/binder/ProcessState.cpp
+++ b/libs/binder/ProcessState.cpp
@@ -288,7 +288,7 @@ void ProcessState::spawnPooledThread(bool isMain)
int32_t s = android_atomic_add(1, &mThreadPoolSeq);
char buf[32];
sprintf(buf, "Binder Thread #%d", s);
- LOGV("Spawning new pooled thread, name=%s\n", buf);
+ ALOGV("Spawning new pooled thread, name=%s\n", buf);
sp<Thread> t = new PoolThread(isMain);
t->run(buf);
}