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

Commit 4ba79cc0 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

* commit 'cc725a4b':
  Use Slog.e() instead of Slog.wtf() for unknown restrictions
parents f2c7ca38 cc725a4b
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;