Merge "ActivityManager: Make bootcomplete marker failure a warning" into nyc-dev

This commit is contained in:
TreeHugger Robot
2016-05-03 18:26:48 +00:00
committed by Android (Google) Code Review

View File

@@ -6599,7 +6599,8 @@ public final class ActivityManagerService extends ActivityManagerNative
try { try {
mInstaller.markBootComplete(VMRuntime.getInstructionSet(abi)); mInstaller.markBootComplete(VMRuntime.getInstructionSet(abi));
} catch (InstallerException e) { } catch (InstallerException e) {
Slog.e(TAG, "Unable to mark boot complete for abi: " + abi, e); Slog.w(TAG, "Unable to mark boot complete for abi: " + abi + " (" +
e.getMessage() +")");
} }
completedIsas.add(instructionSet); completedIsas.add(instructionSet);
} }