diff options
| author | 2017-01-03 11:37:38 -0800 | |
|---|---|---|
| committer | 2017-01-04 11:06:27 -0800 | |
| commit | f5ec538f27eb47e545ef06c376078d8ee3f35a72 (patch) | |
| tree | a0d28956af9952c711622e05223db3bb836e816a | |
| parent | c7c899bbe25bdac33dbe42aaefc37d39f28cf714 (diff) | |
Bluetooth: don't output dumpsys info twice
Dumpsys info was printed in the "Application Services" section as well
as the bluetooth_manager section. Add an argument to print so it prints
from here, and doesn't in the other section.
Test: run a bugreport, check in "APP SERVICES" section
Bug: 29356402
Change-Id: I8adedaeac54c9a538c581459654dbdf96361e046
| -rw-r--r-- | services/core/java/com/android/server/BluetoothManagerService.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/services/core/java/com/android/server/BluetoothManagerService.java b/services/core/java/com/android/server/BluetoothManagerService.java index adc59de87f23..4f43eac8b3ca 100644 --- a/services/core/java/com/android/server/BluetoothManagerService.java +++ b/services/core/java/com/android/server/BluetoothManagerService.java @@ -2029,6 +2029,11 @@ class BluetoothManagerService extends IBluetoothManager.Stub { } writer.flush(); + if (args.length == 0) { + // Add arg to produce output + args = new String[1]; + args[0] = "--print"; + } } if (mBluetoothBinder == null) { |