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

Commit 0fc2a1f4 authored by Makoto Onuki's avatar Makoto Onuki Committed by android-build-merger
Browse files

Merge "Use Slog.e() instead of Slog.wtf() for unknown restrictions" into nyc-dev am: cc725a4b

am: 4ba79cc0

* commit '4ba79cc0':
  Use Slog.e() instead of Slog.wtf() for unknown restrictions
parents c065fa99 4ba79cc0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -155,7 +155,7 @@ public class UserRestrictionsUtils {
     */
    public static boolean isValidRestriction(@NonNull String restriction) {
        if (!USER_RESTRICTIONS.contains(restriction)) {
            Slog.wtf(TAG, "Unknown restriction: " + restriction);
            Slog.e(TAG, "Unknown restriction: " + restriction);
            return false;
        }
        return true;