Dump some bubble data to dumpsys

Flag: NONE added dump logs
Bug: 350753857
Test: manual
       - adb shell dumpsys activity service com.android.quickstep
Change-Id: I19d328f99e5ba887aa508ea9ab16e9778f13698b
This commit is contained in:
Liran Binyamin
2024-07-08 16:28:58 -04:00
parent 892d358394
commit fad57132d3
5 changed files with 72 additions and 0 deletions

View File

@@ -282,6 +282,11 @@ public class TaskbarControllers {
}
uiController.dumpLogs(prefix + "\t", pw);
rotationButtonController.dumpLogs(prefix + "\t", pw);
if (bubbleControllers.isPresent()) {
bubbleControllers.get().dump(pw);
} else {
pw.println(String.format("%s\t%s", prefix, "Bubble controllers are empty."));
}
}
/**