Merge "Include debugger connection status in error entry"

This commit is contained in:
Jean-Baptiste Queru
2010-10-10 16:49:54 -07:00
committed by Android Code Review

View File

@ -9252,6 +9252,9 @@ public final class ActivityManagerService extends ActivityManagerNative implemen
sb.append("Subject: ").append(subject).append("\n"); sb.append("Subject: ").append(subject).append("\n");
} }
sb.append("Build: ").append(Build.FINGERPRINT).append("\n"); sb.append("Build: ").append(Build.FINGERPRINT).append("\n");
if (Debug.isDebuggerConnected()) {
sb.append("Debugger: Connected\n");
}
sb.append("\n"); sb.append("\n");
// Do the rest in a worker thread to avoid blocking the caller on I/O // Do the rest in a worker thread to avoid blocking the caller on I/O