diff options
| author | 2012-01-19 14:47:22 -0800 | |
|---|---|---|
| committer | 2012-01-19 14:47:22 -0800 | |
| commit | 82a0641f497db89ad8c51598bcb94b070bd748d8 (patch) | |
| tree | 7c2fae2a60509e3deedc3a51e2d5c0ae5966f681 /libs/utils/RefBase.cpp | |
| parent | 86c9a50ef8d61f433c478d4ba1bd8ad017eb64c1 (diff) | |
| parent | 11862d62b3e6e3a14cb3f4631d8564dfa7b3a6a3 (diff) | |
Merge "Rename (IF_)LOGE(_IF) to (IF_)ALOGE(_IF)"
Diffstat (limited to 'libs/utils/RefBase.cpp')
| -rw-r--r-- | libs/utils/RefBase.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libs/utils/RefBase.cpp b/libs/utils/RefBase.cpp index 0b7dd92e32..ad0939e574 100644 --- a/libs/utils/RefBase.cpp +++ b/libs/utils/RefBase.cpp @@ -98,7 +98,7 @@ public: #if DEBUG_REFS_FATAL_SANITY_CHECKS LOG_ALWAYS_FATAL("Strong references remain!"); #else - LOGE("Strong references remain:"); + ALOGE("Strong references remain:"); #endif ref_entry* refs = mStrongRefs; while (refs) { @@ -116,7 +116,7 @@ public: #if DEBUG_REFS_FATAL_SANITY_CHECKS LOG_ALWAYS_FATAL("Weak references remain:"); #else - LOGE("Weak references remain!"); + ALOGE("Weak references remain!"); #endif ref_entry* refs = mWeakRefs; while (refs) { @@ -129,7 +129,7 @@ public: } } if (dumpStack) { - LOGE("above errors at:"); + ALOGE("above errors at:"); CallStack stack; stack.update(); stack.dump(); @@ -205,7 +205,7 @@ public: close(rc); ALOGD("STACK TRACE for %p saved in %s", this, name); } - else LOGE("FAILED TO PRINT STACK TRACE for %p in %s: %s", this, + else ALOGE("FAILED TO PRINT STACK TRACE for %p in %s: %s", this, name, strerror(errno)); } } @@ -263,7 +263,7 @@ private: id, mBase, this); #endif - LOGE("RefBase: removing id %p on RefBase %p" + ALOGE("RefBase: removing id %p on RefBase %p" "(weakref_type %p) that doesn't exist!", id, mBase, this); |