diff options
| author | Chet Haase <chet@google.com> | 2022-05-17 13:15:55 +0000 |
|---|---|---|
| committer | Steven Terrell <steventerrell@google.com> | 2022-05-23 20:31:19 +0000 |
| commit | 506ca2410e9b97020ac5696aafd2457259d81772 (patch) | |
| tree | 644d298e4212010c67d8159b2b21e97d89c131c9 /core/java | |
| parent | 161732cf18d560b87de3b017df49b1fb995fc8d1 (diff) | |
Disable debug logging in AnimationHandler
LOCAL_LOGV should be set to false
Bug: 232914479
Bug: 233391022
Test: Manually tested to ensure logging is not happening
Change-Id: Ie14cf3c0bacb50dd1e7422dc378d5195e4d9bec5
Merged-In: Ie14cf3c0bacb50dd1e7422dc378d5195e4d9bec5
Diffstat (limited to 'core/java')
| -rw-r--r-- | core/java/android/animation/AnimationHandler.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/animation/AnimationHandler.java b/core/java/android/animation/AnimationHandler.java index 57ab55a53e46..1cb2574ae8b7 100644 --- a/core/java/android/animation/AnimationHandler.java +++ b/core/java/android/animation/AnimationHandler.java @@ -39,7 +39,7 @@ import java.util.ArrayList; public class AnimationHandler { private static final String TAG = "AnimationHandler"; - private static final boolean LOCAL_LOGV = true; + private static final boolean LOCAL_LOGV = false; /** * Internal per-thread collections used to avoid set collisions as animations start and end |
