OSDN Git Service

DO NOT MERGE. Fix invalid format specifier in log message
authorIhab Awad <ihab@google.com>
Thu, 22 May 2014 16:49:34 +0000 (09:49 -0700)
committerIhab Awad <ihab@google.com>
Thu, 22 May 2014 20:36:16 +0000 (20:36 +0000)
Bug: 15154713
Change-Id: Ia1f45eb568b31f02a7443def0dc9ef32a21e7f02
(cherry picked from commit 8523607b6e4927d034e47681174843f22308e34a)

telecomm/java/android/telecomm/ConnectionService.java

index 9ace36f..492b08e 100644 (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);