Merge "Disable recents/remote animation logging" into pi-dev am: e9e5cb3ff4

am: 9403eb637c

Change-Id: I203424188807f4026ba4e2752fff127807976f8a
This commit is contained in:
Winson Chung
2018-05-17 09:58:34 -07:00
committed by android-build-merger
2 changed files with 3 additions and 5 deletions

View File

@@ -52,8 +52,7 @@ import com.android.server.wm.WindowManagerService;
class RecentsAnimation implements RecentsAnimationCallbacks,
ActivityDisplay.OnStackOrderChangedListener {
private static final String TAG = RecentsAnimation.class.getSimpleName();
// TODO (b/73188263): Reset debugging flags
private static final boolean DEBUG = true;
private static final boolean DEBUG = false;
private final ActivityManagerService mService;
private final ActivityStackSupervisor mStackSupervisor;

View File

@@ -74,9 +74,8 @@ public class WindowManagerDebugConfig {
static final boolean SHOW_STACK_CRAWLS = false;
static final boolean DEBUG_WINDOW_CROP = false;
static final boolean DEBUG_UNKNOWN_APP_VISIBILITY = false;
// TODO (b/73188263): Reset debugging flags
static final boolean DEBUG_RECENTS_ANIMATIONS = true;
static final boolean DEBUG_REMOTE_ANIMATIONS = DEBUG_APP_TRANSITIONS || true;
static final boolean DEBUG_RECENTS_ANIMATIONS = false;
static final boolean DEBUG_REMOTE_ANIMATIONS = DEBUG_APP_TRANSITIONS || false;
static final String TAG_KEEP_SCREEN_ON = "DebugKeepScreenOn";
static final boolean DEBUG_KEEP_SCREEN_ON = false;