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

Commit 2ac09452 authored by Treehugger Robot's avatar Treehugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Add more details to onTopActivityChanged error logs" into main

parents 8faf871b f85e2763
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);
                }
            }
        };