diff options
author | 2012-01-04 20:05:49 +0000 | |
---|---|---|
committer | 2012-01-04 20:05:49 +0000 | |
commit | a19954ab377b46dbcb9cbe8a6ab6d458f2e32bca (patch) | |
tree | 70d7654789e2e2e0daddabda4c1caabbd15ece78 /libs/utils/Static.cpp | |
parent | 3b115238cf237a1d804c87da59f49c085daeeb9e (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.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/utils/Static.cpp b/libs/utils/Static.cpp index ceca43552b..bfcb2da456 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; } }; |