Merge "Just print warning log instead of triggering WTF" into rvc-dev-plus-aosp am: 9dfb6d3b2e

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/12214964

Change-Id: Ieb2a7ff44e594b8e50861fe0f499e1626ec5c734
This commit is contained in:
TreeHugger Robot
2020-07-24 17:28:14 +00:00
committed by Automerger Merge Worker

View File

@@ -1469,7 +1469,7 @@ public class TrustManagerService extends SystemService {
if (userId > 0) { if (userId > 0) {
return userId; return userId;
} else { } else {
Slog.wtf(TAG, "EXTRA_USER_HANDLE missing or invalid, value=" + userId); Log.w(TAG, "EXTRA_USER_HANDLE missing or invalid, value=" + userId);
return -100; return -100;
} }
} }