Merge "Print exception object when meminfo goes bad"

This commit is contained in:
TreeHugger Robot
2017-07-06 16:32:30 +00:00
committed by Android (Google) Code Review

View File

@@ -17217,12 +17217,12 @@ public class ActivityManagerService extends IActivityManager.Stub
}
} catch (IOException e) {
if (!isCheckinRequest) {
pw.println("Got IoException!");
pw.println("Got IoException! " + e);
pw.flush();
}
} catch (RemoteException e) {
if (!isCheckinRequest) {
pw.println("Got RemoteException!");
pw.println("Got RemoteException! " + e);
pw.flush();
}
}