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

Commit cc725a4b authored by Makoto Onuki's avatar Makoto Onuki Committed by Android (Google) Code Review
Browse files

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

parents ee4ce423 ad5619d4
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;