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

Commit 6548091e authored by Hall Liu's avatar Hall Liu Committed by android-build-merger
Browse files

Add missing Log.endSession am: 7f9fec51 am: de93af97

am: 31e74eee

Change-Id: I54f02a1539a91e4a2c3e755023eb9d6b772c1bcc
parents 44bf827e 31e74eee
Loading
Loading
Loading
Loading
+12 −8
Original line number Diff line number Diff line
@@ -1276,6 +1276,7 @@ public class CallAudioRouteStateMachine extends StateMachine {
        @Override
        public void onReceive(Context context, Intent intent) {
            Log.startSession("CARSM.mCR");
            try {
                if (AudioManager.ACTION_MICROPHONE_MUTE_CHANGED.equals(intent.getAction())) {
                    if (mCallsManager.hasEmergencyCall()) {
                        Log.i(this, "Mute was externally changed when there's an emergency call. " +
@@ -1287,6 +1288,9 @@ public class CallAudioRouteStateMachine extends StateMachine {
                } else {
                    Log.w(this, "Received non-mute-change intent");
                }
            } finally {
                Log.endSession();
            }
        }
    };