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:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user