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

Commit 5b0d2d96 authored by Rambo Wang's avatar Rambo Wang
Browse files

Log Connection.PROPERTY_CROSS_SIM to better identify xsim features

Add the "xsim" tag to Connection cross SIM property for clarity and debugging. It helps to identify xsim technologies, like xsim calling.

Bug: 397800003
Change-Id: Ib1429492a945908ab91451769d7b969a6fddeec8
Test: atest ConnectionTest
Flag: EXEMPT (debug only)
parent 1d909ba9
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -1237,6 +1237,10 @@ public abstract class Connection extends Conferenceable {
            builder.append(isLong ? " PROPERTY_IS_DOWNGRADED_CONFERENCE" : " dngrd_conf");
        }

        if ((properties & PROPERTY_CROSS_SIM) == PROPERTY_CROSS_SIM) {
            builder.append(isLong ? " PROPERTY_CROSS_SIM" : " xsim");
        }

        builder.append("]");
        return builder.toString();
    }