Add ConfigurationProperty.toString() for debugging

Update `ConfigurationProperty` with a sensible `toString()` to help
debug task failures.
This commit is contained in:
Phillip Webb 2020-10-26 19:25:48 -07:00
parent ca08664ebd
commit 79b98c9edd
1 changed files with 5 additions and 0 deletions

View File

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