in src/main/java/org/apache/sling/provisioning/model/Section.java [80:86]
public String toString() {
return "Section [name=" + name
+ ( attributes.isEmpty() ? "": ", attributes=" + attributes )
+ ( contents == null ? "" : ", contents=" + contents)
+ ( this.getLocation() != null ? ", location=" + this.getLocation() : "")
+ "]";
}