diff options
| author | 2012-01-04 20:05:49 +0000 | |
|---|---|---|
| committer | 2012-01-19 14:44:56 -0800 | |
| commit | 933e85615059b85a87747da57288384541cc56da (patch) | |
| tree | 5475260306fb9ddb48b2c7fcfe939ed59752e900 /libs/utils/Static.cpp | |
| parent | 1afd5bab4e0eaba8b5bc2ab5c7b556cd602cf2e7 (diff) | |
Rename (IF_)LOGI(_IF) to (IF_)ALOGI(_IF)
Change-Id: I26f76452ac49e2890b14d133c065493d8df0fb4a
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 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; } }; |