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

Commit c4db8e02 authored by Grzegorz Kołodziejczyk's avatar Grzegorz Kołodziejczyk
Browse files

le_audio: Correct spacing for active device logging

This CL adds spaces, correct printed variable naming for better
readiness and understanding.

Tag: #feature
Bug: 298079825
Test: atest LeAudioServiceTest
Change-Id: I470c02d3f67e26da5b94bebafb5d3b45c816f730
parent 9e040d63
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -1112,7 +1112,7 @@ public class LeAudioService extends ProfileService {
            mActiveAudioInDevice = newSupportedByDeviceInput ? device : null;
            if (DBG) {
                Log.d(TAG, " handleBluetoothActiveDeviceChanged previousInDevice: "
                        + previousInDevice + ", mActiveAudioInDevice" + mActiveAudioInDevice
                        + previousInDevice + ", mActiveAudioInDevice: " + mActiveAudioInDevice
                        + " isLeOutput: false");
            }

@@ -1176,7 +1176,7 @@ public class LeAudioService extends ProfileService {
            mActiveAudioOutDevice = newSupportedByDeviceOutput ? device : null;
            if (DBG) {
                Log.d(TAG, " handleBluetoothActiveDeviceChanged previousOutDevice: "
                        + previousOutDevice + ", mActiveOutDevice: " + mActiveAudioOutDevice
                        + previousOutDevice + ", mActiveAudioOutDevice: " + mActiveAudioOutDevice
                        + " isLeOutput: true");
            }
            return true;
@@ -1451,7 +1451,7 @@ public class LeAudioService extends ProfileService {
                    TAG,
                    "suppressNoisyIntent: "
                            + suppressNoisyIntent
                            + ", hasFallbackDevice"
                            + ", hasFallbackDevice: "
                            + hasFallbackDevice);
            final BluetoothProfileConnectionInfo connectionInfo;
            if (isAtLeastU()) {