Add ConfigurationProperty.toString() for debugging

Update `ConfigurationProperty` with a sensible `toString()` to help
debug task failures.
pull/28993/head
Phillip Webb 4 years ago
parent ca08664ebd
commit 79b98c9edd

@ -65,4 +65,9 @@ public class ConfigurationProperty {
return this.deprecated;
}
@Override
public String toString() {
return "ConfigurationProperty [name=" + this.name + ", type=" + this.type + "]";
}
}

Loading…
Cancel
Save