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

Commit f25ec637 authored by Ihab Awad's avatar Ihab Awad Committed by Android (Google) Code Review
Browse files

Merge "Fix invalid format specifier in log message"

parents 3d0f8ebc 9519ee7f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -40,7 +40,7 @@ public abstract class ConnectionService extends CallService {
        @Override
        public void onStateChanged(Connection c, int state) {
            String id = mIdByConnection.get(c);
            Log.d(this, "Adapter set state %d %s", id, Connection.stateToString(state));
            Log.d(this, "Adapter set state %s %s", id, Connection.stateToString(state));
            switch (state) {
                case Connection.State.ACTIVE:
                    getAdapter().setActive(id);