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

Commit ac46ccdf authored by Santiago Seifert's avatar Santiago Seifert Committed by Android (Google) Code Review
Browse files

Merge "Log exception instead of swallowing it" into main

parents 05258fe0 1834771c
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -281,7 +281,7 @@ public final class MediaRouter2 {
                    /* executor */ null,
                    /* executor */ null,
                    /* onInstanceInvalidatedListener */ null);
                    /* onInstanceInvalidatedListener */ null);
        } catch (IllegalArgumentException ex) {
        } catch (IllegalArgumentException ex) {
            Log.e(TAG, "Package " + clientPackageName + " not found. Ignoring.");
            Log.e(TAG, "Failed to create proxy router for package '" + clientPackageName + "'", ex);
            return null;
            return null;
        }
        }
    }
    }