Tag toString fields for easier bugreport parsing

Bug: 191989346
Test: Builds
Change-Id: Ie2349ea26a3848face3e3f8b97aaf584cd30a0ba
This commit is contained in:
Kevin Chyn
2021-06-29 12:21:26 -07:00
parent a6f387423f
commit f125a6f926

View File

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