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

Commit fb452645 authored by Peiyong Lin's avatar Peiyong Lin Committed by Automerger Merge Worker
Browse files

Merge "Reduce log spam in GameManagerService." into sc-dev am: 13b9214a

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

Change-Id: I0eee4176c776284c153040c99e68c7152ebdade2
parents 8a2422a8 13b9214a
Loading
Loading
Loading
Loading
+6 −7
Original line number Diff line number Diff line
@@ -267,7 +267,8 @@ public final class GameManagerService extends IGameManagerService.Stub {
                    mAllowDownscale = true;
                }
            } catch (PackageManager.NameNotFoundException e) {
                Slog.e(TAG, "Failed to get package metadata", e);
                // Not all packages are installed, hence ignore those that are not installed yet.
                Slog.v(TAG, "Failed to get package metadata");
            }
            final String configString = DeviceConfig.getProperty(
                    DeviceConfig.NAMESPACE_GAME_OVERLAY, packageName);
@@ -531,9 +532,8 @@ public final class GameManagerService extends IGameManagerService.Stub {
            final ApplicationInfo applicationInfo = mPackageManager
                    .getApplicationInfoAsUser(packageName, PackageManager.MATCH_ALL, userId);
            if (applicationInfo.category != ApplicationInfo.CATEGORY_GAME) {
                Slog.e(TAG, "Ignoring attempt to get the Game Mode for '" + packageName
                        + "' which is not categorized as a game: applicationInfo.flags = "
                        + applicationInfo.flags + ", category = " + applicationInfo.category);
                // The game mode for applications that are not identified as game is always
                // UNSUPPORTED. See {@link PackageManager#setApplicationCategoryHint(String, int)}
                return GameManager.GAME_MODE_UNSUPPORTED;
            }
        } catch (PackageManager.NameNotFoundException e) {
@@ -571,9 +571,8 @@ public final class GameManagerService extends IGameManagerService.Stub {
            final ApplicationInfo applicationInfo = mPackageManager
                    .getApplicationInfoAsUser(packageName, PackageManager.MATCH_ALL, userId);
            if (applicationInfo.category != ApplicationInfo.CATEGORY_GAME) {
                Slog.e(TAG, "Ignoring attempt to set the Game Mode for '" + packageName
                        + "' which is not categorized as a game: applicationInfo.flags = "
                        + applicationInfo.flags + ", category = " + applicationInfo.category);
                // Ignore attempt to set the game mode for applications that are not identified
                // as game. See {@link PackageManager#setApplicationCategoryHint(String, int)}
                return;
            }
        } catch (PackageManager.NameNotFoundException e) {