diff options
| author | Charles Chen <charlesccchen@google.com> | 2022-03-25 12:28:15 +0000 |
|---|---|---|
| committer | Charles Chen <charlesccchen@google.com> | 2022-03-28 09:02:00 +0000 |
| commit | 7f8435496ceb869569ba8dd32cfb22e56a2dc7c6 (patch) | |
| tree | 271358671e43830ba910a2e37975e675afc21685 /core/java/android/window/WindowContextController.java | |
| parent | 18f93518bd1deb8aaefe67e2e282bdc7e35b3632 (diff) | |
Disable debug log in WindowContextController
fixes: 220049234
Test: build pass
Change-Id: I4e4edbe1362207b2df411b966a8aef62dcaa8f8f
Diffstat (limited to 'core/java/android/window/WindowContextController.java')
| -rw-r--r-- | core/java/android/window/WindowContextController.java | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/core/java/android/window/WindowContextController.java b/core/java/android/window/WindowContextController.java index 5007df574ec1..4b9a957f541d 100644 --- a/core/java/android/window/WindowContextController.java +++ b/core/java/android/window/WindowContextController.java @@ -41,14 +41,13 @@ import java.lang.annotation.Retention; * @hide */ public class WindowContextController { - // TODO(220049234): Disable attach debug logging before shipping. - private static final boolean DEBUG_ATTACH = true; + private static final boolean DEBUG_ATTACH = false; private static final String TAG = "WindowContextController"; /** - * {@link AttachStatus.STATUS_ATTACHED} to indicate that the {@code mToken} is associated with a + * {@link AttachStatus#STATUS_ATTACHED} to indicate that the {@code mToken} is associated with a * {@link com.android.server.wm.DisplayArea}. Note that {@code mToken} is able to attach a - * WindowToken after this flag sets to {@link AttachStatus.STATUS_ATTACHED}. + * WindowToken after this flag sets to {@link AttachStatus#STATUS_ATTACHED}. */ @VisibleForTesting public int mAttachedToDisplayArea = AttachStatus.STATUS_INITIALIZED; |
