Skip to content

Commit bf4aa9d

Browse files
committed
Turn off chatty logging for everyone.
Change-Id: I6c6f48012df8a551ae4f2b2a9cd2713184234763
1 parent 8e72c9e commit bf4aa9d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/SystemUI/src/com/android/systemui/statusbar/phone/PanelBar.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import android.widget.FrameLayout;
1010

1111
public class PanelBar extends FrameLayout {
12-
public static final boolean DEBUG = true;
12+
public static final boolean DEBUG = false;
1313
public static final String TAG = PanelView.class.getSimpleName();
1414
public static final void LOG(String fmt, Object... args) {
1515
if (!DEBUG) return;

packages/SystemUI/src/com/android/systemui/statusbar/phone/PanelView.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
import com.android.systemui.R;
1515

1616
public class PanelView extends FrameLayout {
17-
public static final boolean DEBUG = true;
17+
public static final boolean DEBUG = false;
1818
public static final String TAG = PanelView.class.getSimpleName();
1919
public static final void LOG(String fmt, Object... args) {
2020
if (!DEBUG) return;

0 commit comments

Comments
 (0)