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

Commit 42b30e1b authored by Ihab Awad's avatar Ihab Awad
Browse files

DO NOT MERGE. Fix invalid format specifier in log message

Bug: 15154713
Change-Id: Ia1f45eb568b31f02a7443def0dc9ef32a21e7f02
(cherry picked from commit 8523607b6e4927d034e47681174843f22308e34a)
parent b3442311
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);