diff options
| author | Igor Murashkin <iam@google.com> | 2014-04-02 00:03:31 +0000 |
|---|---|---|
| committer | Android Git Automerger <android-git-automerger@android.com> | 2014-04-02 00:03:31 +0000 |
| commit | f15b45a7db801143b0d016c4aceab246d568c014 (patch) | |
| tree | f5cf5ad6ec00b8ca42d2e3a4e56920f853e33015 /libutils | |
| parent | d89c68e217d5f0a93cb2e82924bba8276c94dcbc (diff) | |
| parent | cb6daaafa45c81c3c304eac947d2e2fca15f3171 (diff) | |
| download | core-f15b45a7db801143b0d016c4aceab246d568c014.tar.gz core-f15b45a7db801143b0d016c4aceab246d568c014.tar.bz2 core-f15b45a7db801143b0d016c4aceab246d568c014.zip | |
am cb6daaaf: am 9d379a1e: am dfdbb64f: Merge "Fix stack trace logging in RefBase."
* commit 'cb6daaafa45c81c3c304eac947d2e2fca15f3171':
Fix stack trace logging in RefBase.
Diffstat (limited to 'libutils')
| -rw-r--r-- | libutils/RefBase.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libutils/RefBase.cpp b/libutils/RefBase.cpp index f398a82ce..385c226fb 100644 --- a/libutils/RefBase.cpp +++ b/libutils/RefBase.cpp @@ -109,7 +109,7 @@ public: char inc = refs->ref >= 0 ? '+' : '-'; ALOGD("\t%c ID %p (ref %d):", inc, refs->id, refs->ref); #if DEBUG_REFS_CALLSTACK_ENABLED - refs->stack.dump(LOG_TAG); + refs->stack.log(LOG_TAG); #endif refs = refs->next; } @@ -123,7 +123,7 @@ public: char inc = refs->ref >= 0 ? '+' : '-'; ALOGD("\t%c ID %p (ref %d):", inc, refs->id, refs->ref); #if DEBUG_REFS_CALLSTACK_ENABLED - refs->stack.dump(LOG_TAG); + refs->stack.log(LOG_TAG); #endif refs = refs->next; } |
