I need to be able to traverse through my entire object graph and log all contents of all member fields.
For example: Object A has a collection of Object B\'s which
Apache commons-lang 3.10 has the new RecursiveToStringStyle.
RecursiveToStringStyle
ToStringBuilder.reflectionToString(table, new RecursiveToStringStyle());
Outout
Person@7f54[name=Stephen,age=29,smoker=false,job=Job@43cd2[title=Manager]]