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

Commit 54ca13a2 authored by Tyler Gunn's avatar Tyler Gunn
Browse files

Add telecom log to report when call changes external state.

Bug: 29906222
Change-Id: Id3c6e70d7922d83b84c533e60cd665c0f6d3d1d3
parent eb2d0aad
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1037,7 +1037,7 @@ public class Call implements CreateConnectionResponse {
            if (wasExternal != isExternal) {
                Log.v(this, "setConnectionProperties: external call changed isExternal = %b",
                        isExternal);

                Log.event(this, Log.Events.IS_EXTERNAL, isExternal);
                for (Listener l : mListeners) {
                    l.onExternalCallChanged(this, isExternal);
                }
+1 −0
Original line number Diff line number Diff line
@@ -167,6 +167,7 @@ public class Log {
        public static final String RECEIVE_VIDEO_RESPONSE = "RECEIVE_VIDEO_RESPONSE";
        public static final String SEND_VIDEO_REQUEST = "SEND_VIDEO_REQUEST";
        public static final String SEND_VIDEO_RESPONSE = "SEND_VIDEO_RESPONSE";
        public static final String IS_EXTERNAL = "IS_EXTERNAL";

        public static class Timings {
            public static final String ACCEPT_TIMING = "accept";