Add dumping of Running Service reports to ApplicationErrorReports

Change-Id: I5f10bf81af384777da2ac2d2c00463b766a4fb67
This commit is contained in:
Jacek Surazski
2010-08-02 13:03:35 +02:00
parent 7768e02973
commit 87d0b2f422

View File

@@ -184,7 +184,7 @@ public class ApplicationErrorReport implements Parcelable {
candidate = SystemProperties.get(DEFAULT_ERROR_RECEIVER_PROPERTY);
return getErrorReportReceiver(pm, packageName, candidate);
}
/**
* Return activity in receiverPackage that handles ACTION_APP_ERROR.
*
@@ -581,6 +581,9 @@ public class ApplicationErrorReport implements Parcelable {
case TYPE_BATTERY:
batteryInfo.dump(pw, prefix);
break;
case TYPE_RUNNING_SERVICE:
runningServiceInfo.dump(pw, prefix);
break;
}
}
}