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

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

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

* commit 'dfdbb64f':
  Fix stack trace logging in RefBase.
parents 7f92f390 dfdbb64f
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;
            }