summaryrefslogtreecommitdiff
path: root/libs/binder/ProcessState.cpp
diff options
context:
space:
mode:
author Jean-Baptiste Queru <jbq@google.com> 2012-01-19 14:46:24 -0800
committer android code review <noreply-gerritcodereview@google.com> 2012-01-19 14:46:24 -0800
commit49c36b18b3bc648a42a85fa5fdd30fd61e9a4bd8 (patch)
tree0c840758552e65e5ed32e0f4183aa784fa3126f3 /libs/binder/ProcessState.cpp
parentf98b6fd3f51a5067196d85b102a95e8289daae01 (diff)
parent1888a81fb761aa50f7414b699e7c2545f1fb44cd (diff)
Merge "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 f5288c8c3e..f06a59ea66 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);
}