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

Commit c2d9287c authored by Jay Aliomer's avatar Jay Aliomer Committed by Android (Google) Code Review
Browse files

Merge "WallpaperService crashes becuase of a log statement" into sc-dev

parents da685b23 959dd9c0
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -776,8 +776,10 @@ public abstract class WallpaperService extends Service {
                WallpaperColors color = colors.get(i);
                RectF area = regions.get(i);
                if (color == null || area == null) {
                    Log.wtf(TAG, "notifyLocalColorsChanged null values. color: "
                    if (DEBUG) {
                        Log.e(TAG, "notifyLocalColorsChanged null values. color: "
                                + color + " area " + area);
                    }
                    continue;
                }
                try {