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

Commit 7d167f25 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Replace ellipsys by ascii char" into main

parents c0790bb7 bf752074
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -79,7 +79,7 @@ object BlockingBluetoothAdapter {
                if (adapter.isBleScanAlwaysAvailable()) {
                    break
                }
                Log.d(TAG, "Ble scan not yet available Sleeping 20 ms $i/5")
                Log.d(TAG, "Ble scan not yet available... Sleeping 20 ms $i/5")
                Thread.sleep(20)
            }
            if (!adapter.isBleScanAlwaysAvailable()) {
+1 −1
Original line number Diff line number Diff line
@@ -57,7 +57,7 @@ class LogTest {

    @Test
    fun log_errorThrowable() {
        Log.e(TAG, "Logging error ", RuntimeException("With a Throwable"))
        Log.e(TAG, "Logging error... ", RuntimeException("With a Throwable"))
    }

    @Test
+2 −2
Original line number Diff line number Diff line
@@ -501,14 +501,14 @@ class BluetoothManagerService {
                    if (BluetoothAdapter.ACTION_LOCAL_NAME_CHANGED.equals(action)) {
                        String newName = intent.getStringExtra(BluetoothAdapter.EXTRA_LOCAL_NAME);
                        if (newName != null) {
                            Log.d(TAG, "Bluetooth Adapter name changed to " + newName);
                            Log.d(TAG, "Local name changed to: " + newName);
                            storeNameAndAddress(newName, null);
                        }
                    } else if (BluetoothAdapter.ACTION_BLUETOOTH_ADDRESS_CHANGED.equals(action)) {
                        String newAddress =
                                intent.getStringExtra(BluetoothAdapter.EXTRA_BLUETOOTH_ADDRESS);
                        if (newAddress != null) {
                            Log.d(TAG, "Local address changed to " + logAddress(newAddress));
                            Log.d(TAG, "Local address changed to: " + logAddress(newAddress));
                            storeNameAndAddress(null, newAddress);
                        } else {
                            Log.e(TAG, "No Bluetooth Adapter address parameter found");