summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Rob Carr <racarr@google.com> 2016-01-20 21:53:24 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2016-01-20 21:53:24 +0000
commitca1b71b6fab3d2e01b2d9ae0e6a99ec95a53ad9f (patch)
tree4c2909109fa2bd725270f8bb94be368eb384b063
parent73d63b4a7211a837af360761f7dfeeb07ac524f2 (diff)
parent22705e8594edfa80f2e0f66476b24a09d39eb537 (diff)
Merge "Disable temporary logging."
-rw-r--r--services/core/java/com/android/server/wm/WindowManagerDebugConfig.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/services/core/java/com/android/server/wm/WindowManagerDebugConfig.java b/services/core/java/com/android/server/wm/WindowManagerDebugConfig.java
index 48d3e806e2ba..0979cd32a1e2 100644
--- a/services/core/java/com/android/server/wm/WindowManagerDebugConfig.java
+++ b/services/core/java/com/android/server/wm/WindowManagerDebugConfig.java
@@ -35,8 +35,8 @@ public class WindowManagerDebugConfig {
static final boolean DEBUG_RESIZE = false;
static final boolean DEBUG = false;
- static final boolean DEBUG_ADD_REMOVE = true;
- static final boolean DEBUG_FOCUS = true;
+ static final boolean DEBUG_ADD_REMOVE = false;
+ static final boolean DEBUG_FOCUS = false;
static final boolean DEBUG_FOCUS_LIGHT = DEBUG_FOCUS || false;
static final boolean DEBUG_ANIM = false;
static final boolean DEBUG_KEYGUARD = false;
@@ -50,15 +50,15 @@ public class WindowManagerDebugConfig {
static final boolean DEBUG_ORIENTATION = false;
static final boolean DEBUG_APP_ORIENTATION = false;
static final boolean DEBUG_CONFIGURATION = false;
- static final boolean DEBUG_APP_TRANSITIONS = true;
- static final boolean DEBUG_STARTING_WINDOW = true;
+ static final boolean DEBUG_APP_TRANSITIONS = false;
+ static final boolean DEBUG_STARTING_WINDOW = false;
static final boolean DEBUG_WALLPAPER = false;
static final boolean DEBUG_WALLPAPER_LIGHT = false || DEBUG_WALLPAPER;
static final boolean DEBUG_DRAG = false;
static final boolean DEBUG_SCREEN_ON = false;
static final boolean DEBUG_SCREENSHOT = false;
static final boolean DEBUG_BOOT = false;
- static final boolean DEBUG_LAYOUT_REPEATS = true;
+ static final boolean DEBUG_LAYOUT_REPEATS = false;
static final boolean DEBUG_SURFACE_TRACE = false;
static final boolean DEBUG_WINDOW_TRACE = false;
static final boolean DEBUG_TASK_MOVEMENT = false;