in rest-api/src/jetbrains/buildServer/server/rest/data/build/GenericBuildsFilter.java [370:393]
public String toString() {
final StringBuilder result = new StringBuilder();
result.append("Builds filter (");
if (myBuildType!= null) result.append("buildType:").append(myBuildType).append(", ");
if (myProject!= null) result.append("project:").append(myProject.describe(false)).append(", ");
if (myStatus!= null) result.append("status:").append(myStatus).append(", ");
if (myNumber!= null) result.append("number:").append(myNumber).append(", ");
if (myUser!= null) result.append("user:").append(myUser).append(", ");
if (myPersonal!= null) result.append("personal:").append(myPersonal).append(", ");
if (myCanceled!= null) result.append("canceled:").append(myCanceled).append(", ");
if (myRunning!= null) result.append("running:").append(myRunning).append(", ");
if (myPinned!= null) result.append("pinned:").append(myPinned).append(", ");
if (myTags!= null) result.append("tag:").append(myTags).append(", ");
if (myBranchMatcher.isDefined()) result.append("branchMatcher:").append(myBranchMatcher).append(", ");
if (myAgentName!= null) result.append("agentName:").append(myAgentName).append(", ");
if (myParameterCondition!= null) result.append("parameterCondition:").append(myParameterCondition).append(", ");
if (mySince!= null) result.append("since:").append(mySince).append(", ");
if (myUntil!= null) result.append("until:").append(myUntil).append(", ");
if (myStart!= null) result.append("start:").append(myStart).append(", ");
if (myCount!= null) result.append("count:").append(myCount);
if (myLookupLimit!= null) result.append("lookupLimit:").append(myLookupLimit);
result.append(")");
return result.toString();
}