summaryrefslogtreecommitdiff
path: root/libs/utils/BlobCache.cpp
diff options
context:
space:
mode:
author Steve Block <steveblock@google.com> 2012-01-05 23:22:43 +0000
committer Jean-Baptiste Queru <jbq@google.com> 2012-01-19 14:44:59 -0800
commita51f0e707f1f3142358aa919ea60ad2842803139 (patch)
tree3a4bea403affd07f7611fe13da8cbf64a61ee3e3 /libs/utils/BlobCache.cpp
parent933e85615059b85a87747da57288384541cc56da (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.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/utils/BlobCache.cpp b/libs/utils/BlobCache.cpp
index 497082869268..0011d29d237e 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;
}