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

Commit f85e2763 authored by Marvin Ramin's avatar Marvin Ramin
Browse files

Add more details to onTopActivityChanged error logs

Bug: 327696729
Test: n/a
Change-Id: I13ce8e6828af0de79a668a115d0d260c6813e040
parent dad0d1c5
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -210,7 +210,7 @@ final class VirtualDeviceImpl extends IVirtualDevice.Stub
                    mActivityListener.onTopActivityChanged(displayId, topActivity,
                            UserHandle.USER_NULL);
                } catch (RemoteException e) {
                    Slog.w(TAG, "Unable to call mActivityListener", e);
                    Slog.w(TAG, "Unable to call mActivityListener for display: " + displayId, e);
                }
            }

@@ -220,7 +220,7 @@ final class VirtualDeviceImpl extends IVirtualDevice.Stub
                try {
                    mActivityListener.onTopActivityChanged(displayId, topActivity, userId);
                } catch (RemoteException e) {
                    Slog.w(TAG, "Unable to call mActivityListener", e);
                    Slog.w(TAG, "Unable to call mActivityListener for display: " + displayId, e);
                }
            }

@@ -229,7 +229,7 @@ final class VirtualDeviceImpl extends IVirtualDevice.Stub
                try {
                    mActivityListener.onDisplayEmpty(displayId);
                } catch (RemoteException e) {
                    Slog.w(TAG, "Unable to call mActivityListener", e);
                    Slog.w(TAG, "Unable to call mActivityListener for display: " + displayId, e);
                }
            }
        };