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

Commit 1834771c authored by Santiago Seifert's avatar Santiago Seifert
Browse files

Log exception instead of swallowing it

Bug: b/205124386
Test: presubmit
Flag: EXEMPT Logging only change
Change-Id: I00d3da0d397354ca790c41dae62e193bee762788
parent ece1572f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -281,7 +281,7 @@ public final class MediaRouter2 {
                    /* executor */ null,
                    /* onInstanceInvalidatedListener */ null);
        } 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;
        }
    }