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

Commit 34b6458b 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...

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

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/2062027



Change-Id: Ibfc6ad526b1dcf1a57ef31c5155d173b5a9d9242
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents 46229602 deab0ef3
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -110,7 +110,7 @@ public class MobileSignalController extends SignalController<MobileState, Mobile
                @Override
                @Override
                public void onMobileStatusChanged(boolean updateTelephony,
                public void onMobileStatusChanged(boolean updateTelephony,
                        MobileStatus mobileStatus) {
                        MobileStatus mobileStatus) {
                    if (Log.isLoggable(mTag, Log.DEBUG)) {
                    if (DEBUG) {
                        Log.d(mTag, "onMobileStatusChanged="
                        Log.d(mTag, "onMobileStatusChanged="
                                + " updateTelephony=" + updateTelephony
                                + " updateTelephony=" + updateTelephony
                                + " mobileStatus=" + mobileStatus.toString());
                                + " mobileStatus=" + mobileStatus.toString());
@@ -717,7 +717,7 @@ public class MobileSignalController extends SignalController<MobileState, Mobile
     * This will call listeners if necessary.
     * This will call listeners if necessary.
     */
     */
    private void updateTelephony() {
    private void updateTelephony() {
        if (Log.isLoggable(mTag, Log.DEBUG)) {
        if (DEBUG) {
            Log.d(mTag, "updateTelephonySignalStrength: hasService="
            Log.d(mTag, "updateTelephonySignalStrength: hasService="
                    + mCurrentState.isInService()
                    + mCurrentState.isInService()
                    + " ss=" + mCurrentState.signalStrength
                    + " ss=" + mCurrentState.signalStrength