in src/main/java/org/apache/sling/provisioning/model/Feature.java [203:210]
public String toString() {
return "Feature [runModes=" + runModes + ", variables=" + variables
+ ", name=" + name
+ ( FeatureTypes.PLAIN.equals(this.type) ? "" : ", type=" + type )
+ ( additionalSections.isEmpty() ? "" : ", additionalSections=" + this.additionalSections)
+ ( this.getLocation() != null ? ", location=" + this.getLocation() : "")
+ "]";
}