Add logging for pending restore nav modes

Bug: 137339600
Test: Just logging
Change-Id: Ibce0b9840c87c86622a0f56cea263aa196e4456b
This commit is contained in:
Winson Chung
2020-02-14 14:17:32 -08:00
parent 49d6d560af
commit b0b3da6dc1

View File

@@ -404,6 +404,11 @@ public class NavigationModeController implements Dumpable {
defaultOverlays = "failed_to_fetch";
}
pw.println(" defaultOverlays=" + defaultOverlays);
pw.println(" restoreGesturalNavMode:");
for (int i = 0; i < mRestoreGesturalNavBarMode.size(); i++) {
pw.println(" userId=" + mRestoreGesturalNavBarMode.keyAt(i)
+ " shouldRestore=" + mRestoreGesturalNavBarMode.valueAt(i));
}
dumpAssetPaths(mCurrentUserContext);
}