Removing logs from old bug

Bug: 134106231
Test: None, only log removal
Change-Id: I6503f38ac25d1b2784a181182de026ec0f96e125
This commit is contained in:
Winson Chung
2019-05-30 21:03:49 -07:00
parent 11ddc8ea0b
commit 780fc519dc
4 changed files with 0 additions and 27 deletions

View File

@@ -1930,12 +1930,6 @@ public class KeyguardViewMediator extends SystemUI {
+ " --> flags=0x" + Integer.toHexString(flags));
}
// TODO(b/113914868): investigation log for disappearing home button
Log.d(TAG, "adjustStatusBarLocked (b/113914868): flags=" + flags
+ "mShowing=" + mShowing + " mStatusBarManager=" + mStatusBarManager
+ " mOccluded=" + mOccluded + " isSecure=" + isSecure()
+ " force=" + forceHideHomeRecentsButtons);
mStatusBarManager.disable(flags);
}
}

View File

@@ -285,8 +285,6 @@ public class KeyguardBouncer {
}
public void hide(boolean destroyView) {
// TODO(b/113914868): investigation log for disappearing home button
Log.i(TAG, "KeyguardBouncer.hide (b/113914868): destroyView=" + destroyView);
if (isShowing()) {
StatsLog.write(StatsLog.KEYGUARD_BOUNCER_STATE_CHANGED,
StatsLog.KEYGUARD_BOUNCER_STATE_CHANGED__STATE__HIDDEN);

View File

@@ -597,10 +597,6 @@ public class NavigationBarView extends FrameLayout implements
boolean disableHome = isGesturalMode(mNavBarMode)
|| ((mDisabledFlags & View.STATUS_BAR_DISABLE_HOME) != 0);
// TODO(b/113914868): investigation log for disappearing home button
Log.i(TAG, "updateNavButtonIcons (b/113914868): home disabled=" + disableHome
+ " mDisabledFlags=" + mDisabledFlags);
// Always disable recents when alternate car mode UI is active and for secondary displays.
boolean disableRecent = isRecentsButtonDisabled();

View File

@@ -719,21 +719,6 @@ public class StatusBarManagerService extends IStatusBarService.Stub implements D
// Ensure state for the current user is applied, even if passed a non-current user.
final int net1 = gatherDisableActionsLocked(mCurrentUserId, 1);
final int net2 = gatherDisableActionsLocked(mCurrentUserId, 2);
// TODO(b/113914868): investigation log for disappearing home button
if (whichFlag == 1 && pkg != null && pkg.contains("systemui")) {
String disabledData = "{ ";
for (int i = 0; i < mDisableRecords.size(); i++) {
DisableRecord tok = mDisableRecords.get(i);
disabledData += " ([" + i + "] " + tok + "), ";
}
disabledData += " }";
final UiState state = getUiState(displayId);
Log.d(TAG, "disabledlocked (b/113914868): displayId=" + displayId + ", net1=" + net1
+ ", mDisabled1=" + state.mDisabled1 + ", token=" + token
+ ", mDisableRecords=" + mDisableRecords.size() + " => " + disabledData);
}
final UiState state = getUiState(displayId);
if (!state.disableEquals(net1, net2)) {
state.setDisabled(net1, net2);