summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Sandler <dsandler@android.com>2012-07-03 14:30:10 -0400
committerDaniel Sandler <dsandler@android.com>2012-07-03 14:35:05 -0400
commitfdbac77e829b7575e0986b7919ff545bae2144fe (patch)
tree028e7b6cd868152f4ca414c920886360114c0dea
parent27ad058a941e742bc519b76d3a7940f31f988f1f (diff)
downloadbase-fdbac77e829b7575e0986b7919ff545bae2144fe.tar.gz
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
-rw-r--r--packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java7
1 files changed, 6 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java b/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java
index c0838c2ca7c6..b9e88a496095 100644
--- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java
+++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/PhoneStatusBar.java
@@ -1926,9 +1926,14 @@ public class PhoneStatusBar extends BaseStatusBar {
synchronized (mQueueLock) {
pw.println("Current Status Bar state:");
pw.println(" mExpanded=" + mExpanded
- + ", mExpandedVisible=" + mExpandedVisible);
+ + ", mExpandedVisible=" + mExpandedVisible
+ + ", mTrackingPosition=" + mTrackingPosition);
pw.println(" mTicking=" + mTicking);
pw.println(" mTracking=" + mTracking);
+ pw.println(" mNotificationPanel=" +
+ ((mNotificationPanel == null)
+ ? "null"
+ : (mNotificationPanel + " params=" + mNotificationPanel.getLayoutParams().debug(""))));
pw.println(" mAnimating=" + mAnimating
+ ", mAnimY=" + mAnimY + ", mAnimVel=" + mAnimVel
+ ", mAnimAccel=" + mAnimAccel);