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

Commit 560fe5cc authored by Patrick Baumann's avatar Patrick Baumann Committed by Automerger Merge Worker
Browse files

Merge "Remove usages of Slog.wtf" into rvc-dev am: 4d61690b am: 0c2eac1e

Change-Id: I5a4376d747206fc6c1b4c5cd357170be49826fda
parents b3ea2139 0c2eac1e
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -417,7 +417,7 @@ public class AppsFilter {
    public void grantImplicitAccess(int recipientUid, int visibleUid) {
        if (recipientUid != visibleUid
                && mImplicitlyQueryable.add(recipientUid, visibleUid) && DEBUG_LOGGING) {
            Slog.wtf(TAG, "implicit access granted: " + recipientUid + " -> " + visibleUid);
            Slog.i(TAG, "implicit access granted: " + recipientUid + " -> " + visibleUid);
        }
    }

@@ -720,7 +720,7 @@ public class AppsFilter {
                return false;
            }
            if (callingSetting == null) {
                Slog.wtf(TAG, "No setting found for non system uid " + callingUid);
                Slog.w(TAG, "No setting found for non system uid " + callingUid);
                return true;
            }
            final PackageSetting callingPkgSetting;
@@ -760,7 +760,7 @@ public class AppsFilter {
            final AndroidPackage targetPkg = targetPkgSetting.pkg;
            if (targetPkg == null) {
                if (DEBUG_LOGGING) {
                    Slog.wtf(TAG, "shouldFilterApplication: " + "targetPkg is null");
                    Slog.w(TAG, "shouldFilterApplication: " + "targetPkg is null");
                }
                return true;
            }