diff options
author | Jean-Baptiste Queru <jbq@google.com> | 2012-01-19 17:18:25 -0800 |
---|---|---|
committer | Jean-Baptiste Queru <jbq@google.com> | 2012-01-19 17:18:25 -0800 |
commit | 97aa8ee81198234aedffceaf71ad216b96323393 (patch) | |
tree | b5f311825b206befcb8b4bf35ac7b09197fd40cf /libs/rs/rsElement.cpp | |
parent | 36b48c30adf7236b00eccf87f3b5691359526540 (diff) | |
parent | ee4618bc4da65fdabf197874e87d2923904e7acd (diff) | |
download | frameworks_base-97aa8ee81198234aedffceaf71ad216b96323393.zip frameworks_base-97aa8ee81198234aedffceaf71ad216b96323393.tar.gz frameworks_base-97aa8ee81198234aedffceaf71ad216b96323393.tar.bz2 |
Merge ee4618bc
Change-Id: Ie1dc6ad38e7c30636d80f6caef11cf6673144940
Diffstat (limited to 'libs/rs/rsElement.cpp')
-rw-r--r-- | libs/rs/rsElement.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/rs/rsElement.cpp b/libs/rs/rsElement.cpp index 71e1b91..df90ce4 100644 --- a/libs/rs/rsElement.cpp +++ b/libs/rs/rsElement.cpp @@ -62,11 +62,11 @@ size_t Element::getSizeBits() const { void Element::dumpLOGV(const char *prefix) const { ObjectBase::dumpLOGV(prefix); - LOGV("%s Element: fieldCount: %zu, size bytes: %zu", prefix, mFieldCount, getSizeBytes()); + ALOGV("%s Element: fieldCount: %zu, size bytes: %zu", prefix, mFieldCount, getSizeBytes()); mComponent.dumpLOGV(prefix); for (uint32_t ct = 0; ct < mFieldCount; ct++) { - LOGV("%s Element field index: %u ------------------", prefix, ct); - LOGV("%s name: %s, offsetBits: %u, arraySize: %u", + ALOGV("%s Element field index: %u ------------------", prefix, ct); + ALOGV("%s name: %s, offsetBits: %u, arraySize: %u", prefix, mFields[ct].name.string(), mFields[ct].offsetBits, mFields[ct].arraySize); mFields[ct].e->dumpLOGV(prefix); } |