From ce04131f1ad1d9510cb09f91d5093b9220e36995 Mon Sep 17 00:00:00 2001 From: vadimt Date: Fri, 14 Jun 2019 11:46:12 -0700 Subject: [PATCH] Improving TAPL diags Change-Id: Iee84b64618eebf80f755575c2d27660c12e9d7c2 --- .../com/android/launcher3/tapl/LauncherInstrumentation.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tapl/com/android/launcher3/tapl/LauncherInstrumentation.java b/tests/tapl/com/android/launcher3/tapl/LauncherInstrumentation.java index 54b2a017f3..2db9d08269 100644 --- a/tests/tapl/com/android/launcher3/tapl/LauncherInstrumentation.java +++ b/tests/tapl/com/android/launcher3/tapl/LauncherInstrumentation.java @@ -209,8 +209,8 @@ public final class LauncherInstrumentation { final Context ctx = baseContext.createPackageContext("android", 0); for (int i = 0; i < 100; ++i) { final int currentInteractionMode = getCurrentInteractionMode(ctx); - log("Interaction mode = " + currentInteractionMode); final NavigationModel model = getNavigationModel(currentInteractionMode); + log("Interaction mode = " + currentInteractionMode + " (" + model + ")"); if (model != null) return model; Thread.sleep(100); }