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

Commit 009348e8 authored by Andrew Lee's avatar Andrew Lee Committed by Android (Google) Code Review
Browse files

Merge "Fix disconnect log printf in ConnectionService." into lmp-dev

parents c1e1550b 2678639f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -400,7 +400,7 @@ public abstract class ConnectionService extends Service {
        @Override
        public void onDisconnected(Connection c, DisconnectCause disconnectCause) {
            String id = mIdByConnection.get(c);
            Log.d(this, "Adapter set disconnected %d %s", disconnectCause);
            Log.d(this, "Adapter set disconnected %s", disconnectCause);
            mAdapter.setDisconnected(id, disconnectCause);
        }