Skip to content

Commit 2db99c5

Browse files
dsandlerAndroid (Google) Code Review
authored andcommitted
Merge "Turn off chatty logging for everyone." into jb-mr1-dev
2 parents 21029db + bf4aa9d commit 2db99c5

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)