diff --git a/tests/tapl/com/android/launcher3/tapl/LauncherInstrumentation.java b/tests/tapl/com/android/launcher3/tapl/LauncherInstrumentation.java index b715de0b68..c2050bcd22 100644 --- a/tests/tapl/com/android/launcher3/tapl/LauncherInstrumentation.java +++ b/tests/tapl/com/android/launcher3/tapl/LauncherInstrumentation.java @@ -260,9 +260,9 @@ public final class LauncherInstrumentation { Closable addContextLayer(String piece) { mDiagnosticContext.addLast(piece); - log("Added context: " + getContextDescription()); + log("Entering context: " + piece); return () -> { - log("Removing context: " + getContextDescription()); + log("Leaving context: " + piece); mDiagnosticContext.removeLast(); }; }