Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0e11a4cd authored by Andreas Gampe's avatar Andreas Gampe
Browse files

ActivityManager: Make bootcomplete marker failure a warning

This isn't terminal, and currently even expected in some cases.
Make it a warning instead of an error.

Bug: 26978865
Change-Id: Ieb7f29e340f5b08f69887b9f094554858fb72786
parent a2c10cae
Loading
Loading
Loading
Loading
+2 −1
Original line number Original line Diff line number Diff line
@@ -6598,7 +6598,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);
            }
            }