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

Commit 18483fb7 authored by Tony's avatar Tony
Browse files

Log an error when loading an icon fails

Bug: 62814533
Change-Id: I8ea61276225e211c578d31a5fd1591c4fb67d1bb
parent aa2272f8
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -184,9 +184,13 @@ public class LoaderCursor extends CursorWrapper {
                icon = LauncherIcons.createIconBitmap(
                        BitmapFactory.decodeByteArray(data, 0, data.length), mContext);
            } catch (Exception e) {
                Log.e(TAG, "Failed to load icon for info " + info, e);
                return null;
            }
        }
        if (icon == null) {
            Log.e(TAG, "Failed to load icon for info " + info);
        }
        return icon;
    }