Skip to content

Commit fdbac77

Browse files
committed
Logs to track bug 6765842.
It looks like we can get into a state where the notification panel gets un-expanded, leaving an unsightly mess where your status bar should be. This change adds some additional info to the dumpsys output. Bug: 6765842 Change-Id: Iecf2480bc7bdf5bb737863c0cbf9ad07d8523c0c
1 parent 27ad058 commit fdbac77

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1926,9 +1926,14 @@ public void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
19261926
synchronized (mQueueLock) {
19271927
pw.println("Current Status Bar state:");
19281928
pw.println(" mExpanded=" + mExpanded
1929-
+ ", mExpandedVisible=" + mExpandedVisible);
1929+
+ ", mExpandedVisible=" + mExpandedVisible
1930+
+ ", mTrackingPosition=" + mTrackingPosition);
19301931
pw.println(" mTicking=" + mTicking);
19311932
pw.println(" mTracking=" + mTracking);
1933+
pw.println(" mNotificationPanel=" +
1934+
((mNotificationPanel == null)
1935+
? "null"
1936+
: (mNotificationPanel + " params=" + mNotificationPanel.getLayoutParams().debug(""))));
19321937
pw.println(" mAnimating=" + mAnimating
19331938
+ ", mAnimY=" + mAnimY + ", mAnimVel=" + mAnimVel
19341939
+ ", mAnimAccel=" + mAnimAccel);

0 commit comments

Comments
 (0)