Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f125a6f9 authored by Kevin Chyn's avatar Kevin Chyn
Browse files

Tag toString fields for easier bugreport parsing

Bug: 191989346
Test: Builds
Change-Id: Ie2349ea26a3848face3e3f8b97aaf584cd30a0ba
parent a6f38742
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -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() + "}";
    }
}