summaryrefslogtreecommitdiff
path: root/libs/utils/Static.cpp
diff options
context:
space:
mode:
author Steve Block <steveblock@google.com> 2012-01-04 20:05:49 +0000
committer Steve Block <steveblock@google.com> 2012-01-04 20:05:49 +0000
commit6215d3ff4b5dfa52a5d8b9a42e343051f31066a5 (patch)
treefa31802ed64676368447b67d20567fc1e806c79d /libs/utils/Static.cpp
parentc9c76a82c6d0bf2362044d899013832882f32c94 (diff)
Rename (IF_)LOGI(_IF) to (IF_)ALOGI(_IF) DO NOT MERGE
See https://android-git.corp.google.com/g/156801 Bug: 5449033 Change-Id: Ib08fe86d23db91ee153e9f91a99a35c42b9208ea
Diffstat (limited to 'libs/utils/Static.cpp')
-rw-r--r--libs/utils/Static.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/utils/Static.cpp b/libs/utils/Static.cpp
index ceca43552bc8..bfcb2da456b4 100644
--- a/libs/utils/Static.cpp
+++ b/libs/utils/Static.cpp
@@ -57,8 +57,8 @@ protected:
virtual status_t writeLines(const struct iovec& vec, size_t N)
{
//android_writevLog(&vec, N); <-- this is now a no-op
- if (N != 1) LOGI("WARNING: writeLines N=%d\n", N);
- LOGI("%.*s", vec.iov_len, (const char*) vec.iov_base);
+ if (N != 1) ALOGI("WARNING: writeLines N=%d\n", N);
+ ALOGI("%.*s", vec.iov_len, (const char*) vec.iov_base);
return NO_ERROR;
}
};