Adding toString in SmartspaceTargetEvent

Bug: 176851064
Test: Manual
Change-Id: I14e554817642447da315c8aeccfed83256155e58
This commit is contained in:
Shashwat Razdan
2021-02-09 15:31:26 -08:00
parent ceb8ce05d0
commit 3ef21c78f5

View File

@@ -138,6 +138,15 @@ public final class SmartspaceTargetEvent implements Parcelable {
dest.writeInt(mEventType);
}
@Override
public String toString() {
return "SmartspaceTargetEvent{"
+ "mSmartspaceTarget=" + mSmartspaceTarget
+ ", mSmartspaceActionId='" + mSmartspaceActionId + '\''
+ ", mEventType=" + mEventType
+ '}';
}
/**
* @hide
*/