diff options
author | 2022-10-09 15:31:13 +0800 | |
---|---|---|
committer | 2022-10-09 15:46:28 +0800 | |
commit | 55bbab0f40712fe0898c5dc35d6683bacdc6ce4c (patch) | |
tree | dc9975f15131b5c34ea243d23706227b0d5b1952 | |
parent | 8fbb26bf9499d4d018f60533c6cceac03bfc1723 (diff) |
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
-rw-r--r-- | services/core/java/com/android/server/audio/AudioDeviceBroker.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/core/java/com/android/server/audio/AudioDeviceBroker.java b/services/core/java/com/android/server/audio/AudioDeviceBroker.java index 9a5171243864..8e179b942d1e 100644 --- a/services/core/java/com/android/server/audio/AudioDeviceBroker.java +++ b/services/core/java/com/android/server/audio/AudioDeviceBroker.java @@ -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; } |