Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 09a81927 authored by Evan Laird's avatar Evan Laird Committed by Automerger Merge Worker
Browse files

Merge "SystemUI: Fix issue that log can't be enabled in MobileSignalController" am: 1469de0e

parents b7648eed 1469de0e
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -110,7 +110,7 @@ public class MobileSignalController extends SignalController<MobileState, Mobile
                @Override
                public void onMobileStatusChanged(boolean updateTelephony,
                        MobileStatus mobileStatus) {
                    if (Log.isLoggable(mTag, Log.DEBUG)) {
                    if (DEBUG) {
                        Log.d(mTag, "onMobileStatusChanged="
                                + " updateTelephony=" + updateTelephony
                                + " mobileStatus=" + mobileStatus.toString());
@@ -719,7 +719,7 @@ public class MobileSignalController extends SignalController<MobileState, Mobile
     * This will call listeners if necessary.
     */
    private void updateTelephony() {
        if (Log.isLoggable(mTag, Log.DEBUG)) {
        if (DEBUG) {
            Log.d(mTag, "updateTelephonySignalStrength: hasService="
                    + mCurrentState.isInService()
                    + " ss=" + mCurrentState.signalStrength