Skip to content
Snippets Groups Projects
Commit 59cda441 authored by William Escande's avatar William Escande
Browse files

SystemServer: follow-up log fix

Bug: 311772251
Test: m service-bluetooth | No-op change
Change-Id: I663f7200ceeea7ce49ed93ca85ba3e3ded205859
parent b831bd25
No related branches found
No related tags found
No related merge requests found
......@@ -642,9 +642,7 @@ class BluetoothManagerService {
Log.d(TAG, "Bluetooth Adapter address changed to " + newAddress);
storeNameAndAddress(null, newAddress);
} else {
if (DBG) {
Log.e(TAG, "No Bluetooth Adapter address parameter found");
}
Log.e(TAG, "No Bluetooth Adapter address parameter found");
}
} else if (Intent.ACTION_SETTING_RESTORED.equals(action)) {
final String name = intent.getStringExtra(Intent.EXTRA_SETTING_NAME);
......@@ -655,13 +653,11 @@ class BluetoothManagerService {
final String newValue =
intent.getStringExtra(Intent.EXTRA_SETTING_NEW_VALUE);
if (DBG) {
Log.d(
TAG,
"ACTION_SETTING_RESTORED with BLUETOOTH_ON"
+ (" prevValue=" + prevValue)
+ (" newValue=" + newValue));
}
Log.d(
TAG,
"ACTION_SETTING_RESTORED with BLUETOOTH_ON"
+ (" prevValue=" + prevValue)
+ (" newValue=" + newValue));
if ((newValue != null)
&& (prevValue != null)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment