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

Commit 51602034 authored by Josh Hou's avatar Josh Hou Committed by Automerger Merge Worker
Browse files

Merge "[IMS] Correct the log message" am: f54703d1 am: 8936ce64

Original change: https://android-review.googlesource.com/c/platform/frameworks/opt/telephony/+/1456698

Change-Id: I21cb4e12baad0941d24533feca7952b1f1a9e2a2
parents b1811ef6 8936ce64
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -3862,7 +3862,8 @@ public abstract class Phone extends Handler implements PhoneInternalInterface {
        if (imsPhone != null) {
            isAvailable = imsPhone.isImsCapabilityAvailable(capability, regTech);
        }
        Rlog.d(LOG_TAG, "isImsRegistered =" + isAvailable);
        Rlog.d(LOG_TAG, "isImsCapabilityAvailable, capability=" + capability + ", regTech="
                + regTech + ", isAvailable=" + isAvailable);
        return isAvailable;
    }

@@ -3876,7 +3877,7 @@ public abstract class Phone extends Handler implements PhoneInternalInterface {
        if (imsPhone != null) {
            isVolteEnabled = imsPhone.isVolteEnabled();
        }
        Rlog.d(LOG_TAG, "isImsRegistered =" + isVolteEnabled);
        Rlog.d(LOG_TAG, "isVolteEnabled=" + isVolteEnabled);
        return isVolteEnabled;
    }