summaryrefslogtreecommitdiffstats
path: root/libutils
diff options
context:
space:
mode:
authorIgor Murashkin <iam@google.com>2014-04-01 23:00:08 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-04-01 23:00:08 +0000
commitcb6daaafa45c81c3c304eac947d2e2fca15f3171 (patch)
treeece23c20c77193d6d1477e67726027defe9ffc41 /libutils
parent022fa5cc85f80f828c203f344617365d867b9137 (diff)
parent9d379a1e02f25cbc06db55952d981b0dbba75b5c (diff)
downloadsystem_core-cb6daaafa45c81c3c304eac947d2e2fca15f3171.zip
system_core-cb6daaafa45c81c3c304eac947d2e2fca15f3171.tar.gz
system_core-cb6daaafa45c81c3c304eac947d2e2fca15f3171.tar.bz2
am 9d379a1e: am dfdbb64f: Merge "Fix stack trace logging in RefBase."
* commit '9d379a1e02f25cbc06db55952d981b0dbba75b5c': 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 f398a82..385c226 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;
}