Loading core/java/android/os/Looper.java +2 −1 Original line number Diff line number Diff line Loading @@ -141,7 +141,8 @@ public class Looper { Log.wtf("Looper", "Thread identity changed from 0x" + Long.toHexString(ident) + " to 0x" + Long.toHexString(newIdent) + " while dispatching to " + msg.target + " " + msg.callback + " what=" + msg.what); + msg.target.getClass().getName() + " " + msg.callback + " what=" + msg.what); } msg.recycle(); Loading services/java/com/android/server/am/ActivityManagerService.java +3 −2 Original line number Diff line number Diff line Loading @@ -6996,7 +6996,8 @@ public final class ActivityManagerService extends ActivityManagerNative addErrorToDropBox("wtf", r, null, null, tag, null, null, crashInfo); if (Settings.Secure.getInt(mContext.getContentResolver(), if (r != null && r.pid != Process.myPid() && Settings.Secure.getInt(mContext.getContentResolver(), Settings.Secure.WTF_IS_FATAL, 0) != 0) { crashApplication(r, crashInfo); return true; Loading Loading
core/java/android/os/Looper.java +2 −1 Original line number Diff line number Diff line Loading @@ -141,7 +141,8 @@ public class Looper { Log.wtf("Looper", "Thread identity changed from 0x" + Long.toHexString(ident) + " to 0x" + Long.toHexString(newIdent) + " while dispatching to " + msg.target + " " + msg.callback + " what=" + msg.what); + msg.target.getClass().getName() + " " + msg.callback + " what=" + msg.what); } msg.recycle(); Loading
services/java/com/android/server/am/ActivityManagerService.java +3 −2 Original line number Diff line number Diff line Loading @@ -6996,7 +6996,8 @@ public final class ActivityManagerService extends ActivityManagerNative addErrorToDropBox("wtf", r, null, null, tag, null, null, crashInfo); if (Settings.Secure.getInt(mContext.getContentResolver(), if (r != null && r.pid != Process.myPid() && Settings.Secure.getInt(mContext.getContentResolver(), Settings.Secure.WTF_IS_FATAL, 0) != 0) { crashApplication(r, crashInfo); return true; Loading