From bf4aa9d5bc34df144afcab45e8045d34a0ac090a Mon Sep 17 00:00:00 2001 From: Daniel Sandler Date: Wed, 15 Aug 2012 10:49:28 -0400 Subject: Turn off chatty logging for everyone. Change-Id: I6c6f48012df8a551ae4f2b2a9cd2713184234763 --- .../SystemUI/src/com/android/systemui/statusbar/phone/PanelBar.java | 2 +- .../SystemUI/src/com/android/systemui/statusbar/phone/PanelView.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/phone/PanelBar.java b/packages/SystemUI/src/com/android/systemui/statusbar/phone/PanelBar.java index 1ea5b3e33841..83cabfb13d68 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/PanelBar.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/PanelBar.java @@ -9,7 +9,7 @@ import android.view.MotionEvent; import android.widget.FrameLayout; public class PanelBar extends FrameLayout { - public static final boolean DEBUG = true; + public static final boolean DEBUG = false; public static final String TAG = PanelView.class.getSimpleName(); public static final void LOG(String fmt, Object... args) { if (!DEBUG) return; diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/phone/PanelView.java b/packages/SystemUI/src/com/android/systemui/statusbar/phone/PanelView.java index 7dc8f7c175bd..fa97299f1798 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/phone/PanelView.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/phone/PanelView.java @@ -14,7 +14,7 @@ import android.widget.FrameLayout; import com.android.systemui.R; public class PanelView extends FrameLayout { - public static final boolean DEBUG = true; + public static final boolean DEBUG = false; public static final String TAG = PanelView.class.getSimpleName(); public static final void LOG(String fmt, Object... args) { if (!DEBUG) return; -- cgit v1.2.3-59-g8ed1b