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

Commit 797aa2e1 authored by Brian Stack's avatar Brian Stack
Browse files

Fix log message errors in RangingManager

Bug: 179492073
Test: atest UwbManagerTests
Change-Id: I0fc429cc95e52bb16e40a6d24900bc657fefc9d3
parent 7fa0e63b
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -94,7 +94,8 @@ public class RangingManager extends android.uwb.IUwbRangingCallbacks.Stub {
        synchronized (this) {
            if (!hasSession(sessionHandle)) {
                Log.w(TAG,
                        "onRangingOpened - received unexpected SessionHandle: " + sessionHandle);
                        "onRangingOpenedFailed - received unexpected SessionHandle: "
                                + sessionHandle);
                return;
            }

@@ -124,7 +125,7 @@ public class RangingManager extends android.uwb.IUwbRangingCallbacks.Stub {
            @RangingChangeReason int reason, PersistableBundle params) {
        synchronized (this) {
            if (!hasSession(sessionHandle)) {
                Log.w(TAG, "onRangingStartFailed - received unexpected SessionHandle: "
                Log.w(TAG, "onRangingReconfigureFailed - received unexpected SessionHandle: "
                        + sessionHandle);
                return;
            }