summaryrefslogtreecommitdiffstats
path: root/libutils
diff options
context:
space:
mode:
authorIgor Murashkin <iam@google.com>2014-04-02 00:03:31 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-04-02 00:03:31 +0000
commitf15b45a7db801143b0d016c4aceab246d568c014 (patch)
treef5cf5ad6ec00b8ca42d2e3a4e56920f853e33015 /libutils
parentd89c68e217d5f0a93cb2e82924bba8276c94dcbc (diff)
parentcb6daaafa45c81c3c304eac947d2e2fca15f3171 (diff)
downloadcore-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.cpp4
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;
}