Print exception object when meminfo goes bad

Test: code inspection
Change-Id: I04c0d9cc47bec75225f058049f758e7a5369c491
This commit is contained in:
Daniel Colascione
2017-07-05 14:36:32 -07:00
parent e37a9948d0
commit 23ab925266

View File

@@ -17242,12 +17242,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();
}
}