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

Commit 636c721c authored by Olivier Gaillard's avatar Olivier Gaillard Committed by Android (Google) Code Review
Browse files

Merge "Do not add the tid to the subject anymore"

parents 4bf30171 016d242a
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -314,10 +314,8 @@ public class Watchdog implements Dumpable {
            } else {
                prefix =  "Blocked in monitor " + mCurrentMonitor.getClass().getName();
            }
            Thread thread = getThread();
            String threadIdentifier = thread.getName() + ", tid=" + thread.getId();
            long latencySeconds = (SystemClock.uptimeMillis() - mStartTimeMillis) / 1000;
            return prefix + " on " + mName + " (" + threadIdentifier + ")"
            return prefix + " on " + mName + " (" + getThread().getName() + ")"
                + " for " + latencySeconds + "s";
        }