Merge "Remove usages of Slog.wtf" into rvc-dev am: 4d61690ba0 am: 72116d95f9 am: 48d0bcd5c5

Change-Id: I0f6b528d8fb0b0ae9725315b62d4eb80b080a9ed
This commit is contained in:
Patrick Baumann
2020-05-18 22:19:58 +00:00
committed by Automerger Merge Worker

View File

@@ -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;
}