diff options
| author | 2012-01-19 14:46:24 -0800 | |
|---|---|---|
| committer | 2012-01-19 14:46:24 -0800 | |
| commit | ee4618bc4da65fdabf197874e87d2923904e7acd (patch) | |
| tree | 0fb687dcbdf125a30cdb645605b57bb847d0c7b5 /libs/rs/rsElement.cpp | |
| parent | c318bbb05e02a0080e129623ec8029d31be0d60e (diff) | |
| parent | 06ade6ae1bd015e8b8ad0685847911213c93cc5b (diff) | |
Merge "Rename (IF_)LOGV(_IF) to (IF_)ALOGV(_IF)"
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 71e1b91c6371..df90ce499e85 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);      }  |