summaryrefslogtreecommitdiffstats
path: root/libs
diff options
context:
space:
mode:
authorSteve Kondik <steve@cyngn.com>2015-10-17 00:51:31 -0700
committerSteve Kondik <steve@cyngn.com>2015-10-18 00:51:43 -0700
commitb5fe44639376b0a52ea92bcd3cd135bfe24eada2 (patch)
tree77ad9949c7b864fd947cba361944fa96a6e25b70 /libs
parentd8729538a3dd1e3947278b9b048d254e66ca05d3 (diff)
downloadframeworks_base-b5fe44639376b0a52ea92bcd3cd135bfe24eada2.zip
frameworks_base-b5fe44639376b0a52ea92bcd3cd135bfe24eada2.tar.gz
frameworks_base-b5fe44639376b0a52ea92bcd3cd135bfe24eada2.tar.bz2
androidfw: STFU
Change-Id: I949b8e14b0c777c20a56a30941bd9b980fcc6394
Diffstat (limited to 'libs')
-rw-r--r--libs/androidfw/ResourceTypes.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/androidfw/ResourceTypes.cpp b/libs/androidfw/ResourceTypes.cpp
index 320486d..5a1cf46 100644
--- a/libs/androidfw/ResourceTypes.cpp
+++ b/libs/androidfw/ResourceTypes.cpp
@@ -5832,7 +5832,7 @@ status_t ResTable::getEntry(
}
if (static_cast<size_t>(realEntryIndex) >= typeSpec->entryCount) {
- ALOGW("For resource 0x%08x, entry index(%d) is beyond type entryCount(%d)",
+ ALOGV("For resource 0x%08x, entry index(%d) is beyond type entryCount(%d)",
Res_MAKEID(packageGroup->id - 1, typeIndex, entryIndex),
entryIndex, static_cast<int>(typeSpec->entryCount));
// We should normally abort here, but some legacy apps declare
@@ -6102,7 +6102,7 @@ status_t ResTable::parsePackage(const ResTable_package* const pkg,
if (!typeList.isEmpty()) {
const Type* existingType = typeList[0];
if (existingType->entryCount != newEntryCount && idmapIndex < 0) {
- ALOGW("ResTable_typeSpec entry count inconsistent: given %d, previously %d",
+ ALOGV("ResTable_typeSpec entry count inconsistent: given %d, previously %d",
(int) newEntryCount, (int) existingType->entryCount);
// We should normally abort here, but some legacy apps declare
// resources in the 'android' package (old bug in AAPT).