Fix a bad log format string
When callId was switched from int -> String, this was missed.
Change-Id: I30cd7f59875079ac7aa2aaa5619df6b691f31f68
diff --git a/src/com/android/telecomm/CallServiceAdapter.java b/src/com/android/telecomm/CallServiceAdapter.java
index 2db6255..195ac17 100644
--- a/src/com/android/telecomm/CallServiceAdapter.java
+++ b/src/com/android/telecomm/CallServiceAdapter.java
@@ -174,7 +174,7 @@
/** {@inheritDoc} */
@Override
public void setIsCompatibleWith(String callId, boolean isCompatible) {
- Log.v(this, "setIsCompatibleWith id: %d, isCompatible: %b", callId, isCompatible);
+ Log.v(this, "setIsCompatibleWith id: %s, isCompatible: %b", callId, isCompatible);
mCallIdMapper.checkValidCallId(callId);
mHandler.obtainMessage(MSG_SET_IS_COMPATIBLE_WITH, isCompatible ? 1 : 0, 0, callId).
sendToTarget();