Modify incorrect output format in log

A space needs to be added before the mAudioModeOwner

Signed-off-by: yaoliang1 <yaoliang1@xiaomi.com>
Change-Id: Ied033c053e8f95fb9cc34c0378cc3db84dad25aa
This commit is contained in:
yaoliang1
2022-10-09 15:31:13 +08:00
parent 8fbb26bf94
commit 55bbab0f40

View File

@@ -424,7 +424,7 @@ import java.util.concurrent.atomic.AtomicBoolean;
AudioDeviceAttributes device = crc != null ? crc.getDevice() : null;
if (AudioService.DEBUG_COMM_RTE) {
Log.v(TAG, "requestedCommunicationDevice, device: "
+ device + "mAudioModeOwner: " + mAudioModeOwner.toString());
+ device + " mAudioModeOwner: " + mAudioModeOwner.toString());
}
return device;
}