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

Commit a25b93cd authored by Ruben Brunk's avatar Ruben Brunk
Browse files

Fix dumpsys log to have correct component name for VrListenerService.

Bug: 67460310

Test: adb shell dumpsys vrmanager
Change-Id: I4edf35405e8f40f82d44624a35193abe7eef7314
parent 5ca2689b
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -582,8 +582,8 @@ public class VrManagerService extends SystemService implements EnabledComponentC
            pw.println("Persistent VR mode is currently: " +
                    ((mPersistentVrModeEnabled) ? "enabled" : "disabled"));
            pw.println("Currently bound VR listener service: "
                    + ((mCurrentVrCompositorService == null)
                    ? "None" : mCurrentVrCompositorService.getComponent().flattenToString()));
                    + ((mCurrentVrService == null)
                    ? "None" : mCurrentVrService.getComponent().flattenToString()));
            pw.println("Currently bound VR compositor service: "
                    + ((mCurrentVrCompositorService == null)
                    ? "None" : mCurrentVrCompositorService.getComponent().flattenToString()));