in src/main/java/com/twitter/http2/DefaultHttpPriorityFrame.java [102:117]
public String toString() {
StringBuilder buf = new StringBuilder();
buf.append(StringUtil.simpleClassName(this));
buf.append(StringUtil.NEWLINE);
buf.append("--> Stream-ID = ");
buf.append(getStreamId());
buf.append(StringUtil.NEWLINE);
buf.append("--> Dependency = ");
buf.append(getDependency());
buf.append(" (exclusive: ");
buf.append(isExclusive());
buf.append(", weight: ");
buf.append(getWeight());
buf.append(')');
return buf.toString();
}