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

Commit dfdbb64f authored by Igor Murashkin's avatar Igor Murashkin Committed by Gerrit Code Review
Browse files

Merge "Fix stack trace logging in RefBase."

parents 5b0ad963 55e0f1c8
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;
            }