Add missing member to string conversion - helps in debugging.

Change-Id: I0c8b58f69adcd89038a2c320c9d75172b7a10d5c
This commit is contained in:
Etan Cohen
2014-12-10 10:08:20 -08:00
parent eb4de87683
commit db45a01e22

View File

@@ -269,6 +269,7 @@ public class ImsCallProfile implements Parcelable {
public String toString() {
return "{ serviceType=" + mServiceType +
", callType=" + mCallType +
", restrictCause=" + mRestrictCause +
", callExtras=" + mCallExtras.toString() +
", mediaProfile=" + mMediaProfile.toString() + " }";
}