Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f15b45a7 authored by Igor Murashkin's avatar Igor Murashkin Committed by Android Git Automerger
Browse files

am cb6daaaf: am 9d379a1e: am dfdbb64f: Merge "Fix stack trace logging in RefBase."

* commit 'cb6daaaf':
  Fix stack trace logging in RefBase.
parents d89c68e2 cb6daaaf
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;
            }