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

Commit ba579414 authored by Chris Poultney's avatar Chris Poultney
Browse files

Change log level so output will persist across reboots

Bug: 333767004
Test: none, log level change only
Flag: EXEMPT bugfix
Change-Id: I5d35cf1ed3288eeefb70422b61b26ddc5d9c95b6
parent 3aa6ddf9
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1468,7 +1468,7 @@ public class WallpaperManagerService extends IWallpaperManager.Stub
                        || change == PACKAGE_TEMPORARY_CHANGE) {
                    changed = true;
                    if (doit) {
                        Slog.w(TAG, "Wallpaper uninstalled, removing: "
                        Slog.e(TAG, "Wallpaper uninstalled, removing: "
                                + wallpaper.getComponent());
                        clearWallpaperLocked(wallpaper.mWhich, wallpaper.userId, false, null);
                    }
@@ -1491,7 +1491,7 @@ public class WallpaperManagerService extends IWallpaperManager.Stub
                            PackageManager.MATCH_DIRECT_BOOT_AWARE
                                    | PackageManager.MATCH_DIRECT_BOOT_UNAWARE);
                } catch (NameNotFoundException e) {
                    Slog.w(TAG, "Wallpaper component gone, removing: "
                    Slog.e(TAG, "Wallpaper component gone, removing: "
                            + wallpaper.getComponent());
                    clearWallpaperLocked(wallpaper.mWhich, wallpaper.userId, false, null);
                }