DO NOT MERGE. Fix invalid format specifier in log message

Bug: 15154713
Change-Id: Ia1f45eb568b31f02a7443def0dc9ef32a21e7f02
(cherry picked from commit 8523607b6e4927d034e47681174843f22308e34a)
This commit is contained in:
Ihab Awad
2014-05-22 09:49:34 -07:00
parent b3442311e0
commit 42b30e1b83

View File

@@ -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);