Merge "Tag toString fields for easier bugreport parsing" into sc-dev

This commit is contained in:
Kevin Chyn
2021-06-29 20:42:39 +00:00
committed by Android (Google) Code Review

View File

@@ -268,9 +268,9 @@ public abstract class BaseClientMonitor extends LoggableMonitor
public String toString() { public String toString() {
return "{[" + mSequentialId + "] " return "{[" + mSequentialId + "] "
+ this.getClass().getSimpleName() + this.getClass().getSimpleName()
+ ", " + getProtoEnum() + ", proto=" + getProtoEnum()
+ ", " + getOwnerString() + ", owner=" + getOwnerString()
+ ", " + getCookie() + ", cookie=" + getCookie()
+ ", " + getTargetUserId() + "}"; + ", userId=" + getTargetUserId() + "}";
} }
} }