diff options
| author | 2012-01-05 23:22:43 +0000 | |
|---|---|---|
| committer | 2012-01-19 14:44:59 -0800 | |
| commit | 252778f3ef8deb8103ad60ba84636cf16e0bf605 (patch) | |
| tree | 161809f0b6cb8029212c8fa18c8b0829927dfa3a /libs/utils/BlobCache.cpp | |
| parent | 5b11920b1ac845fa6d5890e0e107c576b57a4c4a (diff) | |
Rename (IF_)LOGW(_IF) to (IF_)ALOGW(_IF)
Change-Id: I8fbdfa7a7581f481968dbb65aa40f7042936d7cb
Diffstat (limited to 'libs/utils/BlobCache.cpp')
| -rw-r--r-- | libs/utils/BlobCache.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/utils/BlobCache.cpp b/libs/utils/BlobCache.cpp index 4970828692..0011d29d23 100644 --- a/libs/utils/BlobCache.cpp +++ b/libs/utils/BlobCache.cpp @@ -69,11 +69,11 @@ void BlobCache::set(const void* key, size_t keySize, const void* value, return; } if (keySize == 0) { - LOGW("set: not caching because keySize is 0"); + ALOGW("set: not caching because keySize is 0"); return; } if (valueSize <= 0) { - LOGW("set: not caching because valueSize is 0"); + ALOGW("set: not caching because valueSize is 0"); return; } |