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

Commit 80ceccc4 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "OMS: do not hide reason for failing transactions (on non-user builds)"

parents abab751a 5a3163d2
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -56,6 +56,7 @@ import android.content.pm.overlay.OverlayPaths;
import android.content.res.ApkAssets;
import android.net.Uri;
import android.os.Binder;
import android.os.Build;
import android.os.Environment;
import android.os.FabricatedOverlayInternal;
import android.os.HandlerThread;
@@ -876,7 +877,7 @@ public final class OverlayManagerService extends SystemService {
                    }
                    Slog.d(TAG, "commit failed: " + e.getMessage(), e);
                    throw new SecurityException("commit failed"
                            + (DEBUG ? ": " + e.getMessage() : ""));
                            + (DEBUG || Build.IS_DEBUGGABLE ? ": " + e.getMessage() : ""));
                }
            } finally {
                traceEnd(TRACE_TAG_RRO);