diff options
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/phone/PanelBar.java | 2 | ||||
| -rw-r--r-- | packages/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; |